Skip to content

Commit

Permalink
reverts adding return
Browse files Browse the repository at this point in the history
  • Loading branch information
willi-mueller committed Aug 30, 2024
1 parent 2c8374b commit ecabd84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/sources/sql_database/sql_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def create_tables(self) -> None:
)

def _make_precision_table(table_name: str, nullable: bool) -> Table:
return Table(
Table( #type: ignore[return]
table_name,
self.metadata,
Column("int_col", Integer(), nullable=nullable),
Expand Down

0 comments on commit ecabd84

Please sign in to comment.