Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
schustmi committed Dec 13, 2024
1 parent 4a3816e commit 5489231
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/zenml/zen_stores/migrations/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,8 +317,8 @@ def backup_database_to_storage(
data = []
for row in rows:
row_dict = row._asdict()
for column in ignore_columns:
row_dict.pop(column, None)
for c in ignore_columns:
row_dict.pop(c, None)

data.append(row_dict)

Expand Down
1 change: 1 addition & 0 deletions src/zenml/zen_stores/sql_zen_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
col,
create_engine,
delete,
desc,
or_,
select,
)
Expand Down

0 comments on commit 5489231

Please sign in to comment.