Skip to content

Commit

Permalink
fix: add notice field param
Browse files Browse the repository at this point in the history
  • Loading branch information
dlbrittain committed Mar 29, 2023
1 parent d70ad15 commit e329598
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dynamicannotationdb/annotation.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ def create_table(
with_crud_columns: bool = True,
read_permission: str = "PUBLIC",
write_permission: str = "PRIVATE",
notice_text: str = None,
):
r"""Create new annotation table unless already exists
Expand Down Expand Up @@ -143,6 +144,7 @@ def create_table(
"read_permission": read_permission,
"write_permission": write_permission,
"last_modified": creation_time,
"notice_text": notice_text,
}

logging.info(f"Metadata for table: {table_name} is {metadata_dict}")
Expand Down

0 comments on commit e329598

Please sign in to comment.