Skip to content

Commit

Permalink
fix: quality issues
Browse files Browse the repository at this point in the history
  • Loading branch information
irtazaakram committed Sep 25, 2023
1 parent d3bd944 commit 13a498d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion integrated_channels/integrated_channel/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def fetch_orphaned_content_audits(self):
enterprise_customer=self.enterprise_customer,
remote_deleted_at__isnull=True,
remote_created_at__isnull=False,
).filter(~non_existent_catalogs_filter | null_catalogs_filter)
).filter(~non_existent_catalogs_filter | null_catalogs_filter) # pylint: disable=unsupported-binary-operation

def update_content_synced_at(self, action_happened_at, was_successful):
"""
Expand Down
2 changes: 1 addition & 1 deletion requirements/check_pins.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ def check_pins(our_file, their_file):
print(their_pkg)
print("")

check_pins(*sys.argv[1:]) # pylint: disable=too-many-function-args
check_pins(*sys.argv[1:])

0 comments on commit 13a498d

Please sign in to comment.