Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
sushi30 committed Aug 6, 2024
1 parent 04b6e88 commit 0527024
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -240,12 +240,10 @@ def get_table_diff(self) -> DiffResultWrapper:
"where": self.get_where(),
}
logger.debug(
"Calling table diff with parameters:" # pylint: disable=consider-using-f-string
" table1={}, table2={}, kwargs={}".format(
table1.table_path,
table2.table_path,
",".join(f"{k}={v}" for k, v in data_diff_kwargs.items()),
)
"Calling table diff with parameters: table1=%s, table2=%s, kwargs=%s",
table1.table_path,
table2.table_path,
",".join(f"{k}={v}" for k, v in data_diff_kwargs.items()),
)
return data_diff.diff_tables(table1, table2, **data_diff_kwargs) # type: ignore

Expand Down

0 comments on commit 0527024

Please sign in to comment.