Skip to content

Commit

Permalink
fix default value
Browse files Browse the repository at this point in the history
  • Loading branch information
Eli Yarson committed Aug 20, 2024
1 parent adbf254 commit a9a9157
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 @@ -56,7 +56,7 @@ class TableStructure(BaseModel):
columns: dict = [str, Column]

@property
def parsed_columns(self, replace_chars: False) -> str:
def parsed_columns(self, replace_chars: bool = False) -> str:
if replace_chars:
return ", ".join(
f'"{str.upper(k).strip().replace("-","_")}" {v.data_type}'
Expand Down

0 comments on commit a9a9157

Please sign in to comment.