Skip to content

Commit

Permalink
Merge pull request #1926 from dandi/fix-ruff-noqa
Browse files Browse the repository at this point in the history
Remove unnecessary `noqa` directive
  • Loading branch information
jjnesbitt authored Apr 26, 2024
2 parents 6e72653 + e90348d commit 3211cf2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def migrate_published_version_metadata(*, dandiset: str, published_version: str,

try:
metanew = migrate(metadata, to_version=to_version, skip_validation=False)
except Exception as e: # noqa: BLE001
except Exception as e:
click.echo(f'Failed to migrate {dandiset}/{published_version}')
click.echo(e)
raise click.Abort from e
Expand Down

0 comments on commit 3211cf2

Please sign in to comment.