From 13a498d6b71686bfdcaa38a4e8c48c049a35e90b Mon Sep 17 00:00:00 2001 From: irtazaakram Date: Mon, 25 Sep 2023 14:41:38 +0500 Subject: [PATCH] fix: quality issues --- integrated_channels/integrated_channel/models.py | 2 +- requirements/check_pins.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/integrated_channels/integrated_channel/models.py b/integrated_channels/integrated_channel/models.py index e81dee4de8..bef3389ff7 100644 --- a/integrated_channels/integrated_channel/models.py +++ b/integrated_channels/integrated_channel/models.py @@ -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): """ diff --git a/requirements/check_pins.py b/requirements/check_pins.py index f2fee68448..4f64232eee 100644 --- a/requirements/check_pins.py +++ b/requirements/check_pins.py @@ -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:])