Skip to content

Commit

Permalink
chore: Remove noqa that is now ignored if click present
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Sep 15, 2024
1 parent ec44c13 commit 6e834f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcoveoc4ids/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def __init__(self, lib_cove_oc4ids_config=None):
self.pkg_schema_url = urljoin(self.schema_host, self.pkg_schema_name)
self.codelists = self.config.config["schema_codelists"]["0.9"]

def get_pkg_schema_obj(self, *, deref=False, use_extensions=False): # noqa: ARG002
def get_pkg_schema_obj(self, *, deref=False, use_extensions=False):
package_schema_obj = deepcopy(self._pkg_schema_obj)
if deref:
return self.deref_schema(self.pkg_schema_str)
Expand Down

0 comments on commit 6e834f3

Please sign in to comment.