Skip to content

Commit

Permalink
chore: Run pyupgrade --py38-plus **/*.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Oct 10, 2023
1 parent 39b1bd6 commit 728d77f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ocdsmerge/rules.py
Expand Up @@ -22,7 +22,7 @@ def get_merge_rules(schema: Schema = None) -> MergeRules:
return _get_merge_rules_from_url_or_path(schema)


@lru_cache()
@lru_cache
def _get_merge_rules_from_url_or_path(schema: str) -> MergeRules:
if schema.startswith('http'):
deref_schema = jsonref.load_uri(schema)
Expand Down
2 changes: 1 addition & 1 deletion ocdsmerge/util.py
Expand Up @@ -8,7 +8,7 @@
NullDateValueError)


@lru_cache()
@lru_cache
def get_tags() -> List[str]:
"""
Returns the tags of all versions of OCDS in alphabetical order.
Expand Down

0 comments on commit 728d77f

Please sign in to comment.