Skip to content

Commit e49407d

Browse files
committed
chore(ruff): remove unused noqa comments.
1 parent 994d488 commit e49407d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roundup/rest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ def format_item(self, node, item_id, props=None, verbose=1):
695695
# support version 1 at this time. Set it as
696696
# placeholder for later use.
697697
if self.api_version is None:
698-
version = self.__default_api_version # noqa: F841
698+
version = self.__default_api_version
699699
else:
700700
version = self.api_version # noqa: F841
701701

@@ -901,7 +901,7 @@ def get_collection(self, class_name, input_payload):
901901
# Call this for the side effect of validating the key
902902
# use _discard as _ is apparently a global for the translation
903903
# service.
904-
_discard = self.transitive_props(class_name, [key]) # noqa: F841
904+
_discard = self.transitive_props(class_name, [key])
905905

906906
# We drop properties without search permission silently
907907
# This reflects the current behavior of other roundup

0 commit comments

Comments
 (0)