Skip to content

Commit

Permalink
Fix mypy error
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtsuk committed Sep 13, 2024
1 parent 7ef42f8 commit a0f04c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snuba/migrations/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def get_status(migration_key: MigrationKey) -> Status:

if include_nonexistent:
non_existing_migrations = clickhouse_group_migrations.get(
group, []
group, set()
).difference(set(migration_ids))
for migration_id in non_existing_migrations:
migration_key = MigrationKey(group, migration_id)
Expand Down

0 comments on commit a0f04c0

Please sign in to comment.