Skip to content

Commit d5830b4

Browse files
committed
ran isort over iana scraper
1 parent 5687270 commit d5830b4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/iana_scraper.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@ def get_subtype_templates() -> ty.Dict[str, ty.Dict[str, ty.Dict[str, ty.Any]]]:
9191
response = requests.get(subtype_url)
9292
# Check if the request was successful
9393
if response.status_code == 200:
94-
subtype_templates[registry][subtype_name] = (
95-
extract_info_from_subtype_template(
96-
registry, subtype_name, response.text
97-
)
94+
subtype_templates[registry][
95+
subtype_name
96+
] = extract_info_from_subtype_template(
97+
registry, subtype_name, response.text
9898
)
9999
else:
100100
# If the request was not successful, return an error message

0 commit comments

Comments
 (0)