Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaFaer committed Mar 6, 2024
1 parent 90f0b2a commit 42bf0a6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions dlt/common/schema/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,7 @@ def coerce_row(
updated_table_partial: TPartialTableSchema = None
table = self._schema_tables.get(table_name)
if not table:
table = utils.new_table(
table_name, parent_table, write_disposition=utils.DEFAULT_WRITE_DISPOSITION
)
table = utils.new_table(table_name, parent_table)
table_columns = table["columns"]

new_row: DictStrAny = {}
Expand Down

0 comments on commit 42bf0a6

Please sign in to comment.