Skip to content

Commit

Permalink
chore: remove set
Browse files Browse the repository at this point in the history
  • Loading branch information
pquadri committed Sep 5, 2024
1 parent ef9f837 commit 2180416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snowflake_utils/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ def current_column_tags(self) -> dict[str, dict[str, str]]:
def current_table_tags(self) -> dict[str, str]:
return {
tag_name.casefold(): tag_value
for _, tag_name, tag_value in set(self._current_tags("table"))
for _, tag_name, tag_value in self._current_tags("table")
}

def sync_tags_table(self, cursor: SnowflakeCursor) -> None:
Expand Down

0 comments on commit 2180416

Please sign in to comment.