changeset 8230:eb45feb1d01e

chore(ruff): remove unused noqa comments.
author John Rouillard <rouilj@ieee.org>
date Thu, 19 Dec 2024 17:58:10 -0500
parents c24b02266077
children 984bc9f94ec6
files roundup/rest.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/roundup/rest.py	Thu Dec 19 17:56:24 2024 -0500
+++ b/roundup/rest.py	Thu Dec 19 17:58:10 2024 -0500
@@ -695,7 +695,7 @@
         # support version 1 at this time. Set it as
         # placeholder for later use.
         if self.api_version is None:
-            version = self.__default_api_version  # noqa: F841
+            version = self.__default_api_version
         else:
             version = self.api_version  # noqa: F841
 
@@ -901,7 +901,7 @@
                 # Call this for the side effect of validating the key
                 # use _discard as _ is apparently a global for the translation
                 # service.
-                _discard = self.transitive_props(class_name, [key])  # noqa: F841
+                _discard = self.transitive_props(class_name, [key])
 
                 # We drop properties without search permission silently
                 # This reflects the current behavior of other roundup

Roundup Issue Tracker: http://roundup-tracker.org/