Skip to content

Commit

Permalink
Make flake8 happy again
Browse files Browse the repository at this point in the history
  • Loading branch information
ahuarte47 committed Nov 25, 2022
1 parent 9201355 commit 9d03d4a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion geodataflow/eogeo/drivers/EODAGDriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ def __init__(self):
@staticmethod
def is_available() -> bool:
"""
Indicates that this Module is available for use, some modules may depend on the availability of other third-party packages.
Indicates that this Module is available for use, some modules may depend
on the availability of other third-party packages.
"""
eodag_spec = importlib.util.find_spec('eodag')
return eodag_spec is not None
Expand Down
3 changes: 2 additions & 1 deletion geodataflow/eogeo/productcatalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ def __init__(self):
@staticmethod
def is_available() -> bool:
"""
Indicates that this Module is available for use, some modules may depend on the availability of other third-party packages.
Indicates that this Module is available for use, some modules may depend
on the availability of other third-party packages.
"""
return True

Expand Down
3 changes: 2 additions & 1 deletion geodataflow/pipeline/modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ def __iter__(self) -> ModuleIt:
@staticmethod
def is_available() -> bool:
"""
Indicates that this Module is available for use, some modules may depend on the availability of other third-party packages.
Indicates that this Module is available for use, some modules may depend
on the availability of other third-party packages.
"""
return True

Expand Down

0 comments on commit 9d03d4a

Please sign in to comment.