Skip to content

Commit

Permalink
Fix mypy linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Sultan Iman committed Jan 30, 2024
1 parent b04d0da commit 4c372df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlt/extract/hints.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def new_table_template(
# and and create tables
for column_name, column_schema in clean_columns.items():
if column_schema.get("container_type") is not None:
clean_columns.pop(column_name)
clean_columns.pop(column_name) # type: ignore[union-attr]

if not callable(clean_columns):
clean_columns = clean_columns.values() # type: ignore
Expand Down

0 comments on commit 4c372df

Please sign in to comment.