Skip to content

Commit d93c26a

Browse files
committed
fix: rmeove unused import
1 parent 1037b65 commit d93c26a

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

eodag/api/product/_product.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
DEFAULT_GEOMETRY,
4444
NOT_AVAILABLE,
4545
NOT_MAPPED,
46-
ONLINE_STATUS,
4746
)
4847
from eodag.utils import (
4948
DEFAULT_DOWNLOAD_TIMEOUT,
@@ -251,9 +250,7 @@ def _register_downloader_from_manager(self, plugins_manager: PluginManager) -> N
251250
"""
252251
download_plugin = plugins_manager.get_download_plugin(self)
253252
try:
254-
auth_plugin = plugins_manager.get_auth_plugin(
255-
download_plugin, self
256-
)
253+
auth_plugin = plugins_manager.get_auth_plugin(download_plugin, self)
257254
except StopIteration:
258255
auth_plugin = None
259256
self.register_downloader(download_plugin, auth_plugin)

0 commit comments

Comments
 (0)