# HG changeset patch # User John Rouillard # Date 1734649090 18000 # Node ID eb45feb1d01e724d29bfa63ed7abae951a4a7a2f # Parent c24b022660774b16e8a5b6ee7fa344be30f14101 chore(ruff): remove unused noqa comments. diff -r c24b02266077 -r eb45feb1d01e roundup/rest.py --- 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