Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ways committed Nov 29, 2024
1 parent bce4f9b commit f368599
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions sedr/ogcapi10.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

from collections.abc import Callable
import requests
import util

ogc_api_common_version = "1.0"
ogc_api_common_url = "https://docs.ogc.org/is/19-072/19-072.html"
Expand Down
2 changes: 1 addition & 1 deletion sedr/rodeoprofile10.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def requirement7_5(jsondata: dict) -> tuple[bool, str]:
not util.args.strict,
f"Collection <{jsondata['id']}> has more than one license link.",
)
elif license_count < 1:
if license_count < 1:
return (
False,
f"Collection <{jsondata['id']}> is missing a license link with "
Expand Down

0 comments on commit f368599

Please sign in to comment.