Skip to content

Commit

Permalink
Fixed issue with default args
Browse files Browse the repository at this point in the history
  • Loading branch information
manusimidt committed Jul 6, 2024
1 parent f5d4a5e commit a7a144a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
setuptools==65.5.1
requests~=2.31.0
urllib3~=1.26.11
setuptools==70.2.0
requests~=2.32.3
urllib3~=2.2.2
2 changes: 1 addition & 1 deletion xbrl/taxonomy.py
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ def parse_taxonomy_url(schema_url: str, cache: HttpCache, imported_schema_uris:
return parse_taxonomy(schema_path, cache, imported_schema_uris, schema_url)


def parse_taxonomy(schema_path: str, cache: HttpCache, imported_schema_uris : set, schema_url: str or None = None) -> TaxonomySchema:
def parse_taxonomy(schema_path: str, cache: HttpCache, imported_schema_uris : set = set(), schema_url: str or None = None) -> TaxonomySchema:
"""
Parses a taxonomy schema file.
Expand Down

0 comments on commit a7a144a

Please sign in to comment.