Skip to content

Commit

Permalink
Merge pull request #1973 from dandi/fix-ruff-lint-error
Browse files Browse the repository at this point in the history
Suppress lint error (SIM103)
  • Loading branch information
jjnesbitt authored Jul 10, 2024
2 parents e955a94 + 84c019c commit 9248339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dandiapi/api/models/asset.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def is_different_from(
if self.path != path:
return True

if self.metadata != metadata:
if self.metadata != metadata: # noqa: SIM103
return True

return False
Expand Down

0 comments on commit 9248339

Please sign in to comment.