Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-nlimtiaco committed Jun 25, 2024
1 parent c743e17 commit a3a9224
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions semantic_model_generator/data_processing/data_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ class Column:
column_name: str
column_type: str
values: Optional[List[str]] = None
comment: Optional[
str
] = None # comment field's to save the column comment user specified on the column
comment: Optional[str] = (
None # comment field's to save the column comment user specified on the column
)

def __post_init__(self: Any) -> None:
"""
Expand All @@ -37,9 +37,9 @@ class Table:
id_: int
name: str
columns: List[Column]
comment: Optional[
str
] = None # comment field's to save the table comment user specified on the table
comment: Optional[str] = (
None # comment field's to save the table comment user specified on the table
)

def __post_init__(self: Any) -> None:
for col in self.columns:
Expand Down

0 comments on commit a3a9224

Please sign in to comment.