Skip to content

Commit

Permalink
Ignore flake8 warning in filter
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianJKoopman committed Dec 5, 2023
1 parent 910ca8c commit 9802953
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion socs/db/suprsync.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ def get_copyable_files(self, archive_name, session=None,
SupRsyncFile.removed == None, # noqa: E711
SupRsyncFile.archive_name == archive_name,
SupRsyncFile.failed_copy_attempts < max_copy_attempts,
SupRsyncFile.ignore == False,
SupRsyncFile.ignore == False, # noqa: E712
)

files = []
Expand Down

0 comments on commit 9802953

Please sign in to comment.