Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbourbeau committed Dec 1, 2023
1 parent 4828ff9 commit cd62af2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions earthaccess/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"Auth",
"Store",
"auth_environ",
"consolidate_metadata",
]

__version__ = version("earthaccess")
Expand Down
4 changes: 3 additions & 1 deletion earthaccess/kerchunk.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
from __future__ import annotations

import earthaccess
import fsspec
import s3fs

import earthaccess


def _get_chunk_metadata(
granuale: earthaccess.results.DataGranule,
Expand All @@ -30,6 +31,7 @@ def consolidate_metadata(
) -> str | dict:
try:
import dask

from kerchunk.combine import MultiZarrToZarr
except ImportError as e:
raise ImportError(
Expand Down
2 changes: 2 additions & 0 deletions tests/integration/test_kerchunk.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import logging
import os
import unittest

import earthaccess
import pytest
Expand Down

0 comments on commit cd62af2

Please sign in to comment.