Skip to content

Commit

Permalink
refactor: linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunato committed Mar 6, 2024
1 parent 132d2c3 commit 73222fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion eodag/api/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@
from eodag.plugins.crunch.base import Crunch
from eodag.plugins.search.base import Search
from eodag.types import ProviderSortables
from eodag.utils import Annotated, DownloadedCallback, ProgressCallback, Unpack
from eodag.types.download_args import DownloadConf
from eodag.utils import Annotated, DownloadedCallback, ProgressCallback, Unpack

logger = logging.getLogger("eodag.core")

Expand Down
6 changes: 3 additions & 3 deletions eodag/plugins/apis/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@
)

if TYPE_CHECKING:
from pydantic.fields import FieldInfo
from typing import Any, Dict, List, Optional, Tuple, Union

from requests.auth import AuthBase
from typing import Any, Dict, List, Optional, Union, Tuple

from eodag.api.product import EOProduct
from eodag.api.search_result import SearchResult
from eodag.types.download_args import DownloadConf
from eodag.utils import DownloadedCallback, ProgressCallback, Annotated, Unpack
from eodag.utils import DownloadedCallback, ProgressCallback, Unpack

logger = logging.getLogger("eodag.apis.base")

Expand Down

0 comments on commit 73222fb

Please sign in to comment.