Skip to content

Commit

Permalink
Remove f-string specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
jr3cermak committed Apr 30, 2024
1 parent 41f221e commit c17f5f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compliance_checker/cf/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ def download_cf_standard_name_table(version, location=None):
url = version
version = '"url specified"'

Check warning on line 294 in compliance_checker/cf/util.py

View check run for this annotation

Codecov / codecov/patch

compliance_checker/cf/util.py#L293-L294

Added lines #L293 - L294 were not covered by tests
else:
url = f"http://cfconventions.org/Data/cf-standard-names/{}/src/cf-standard-name-table.xml".format(
url = "http://cfconventions.org/Data/cf-standard-names/{}/src/cf-standard-name-table.xml".format(
version
)

Expand Down

0 comments on commit c17f5f6

Please sign in to comment.