Skip to content

Commit 0a7a9a0

Browse files
committed
isort
1 parent f6f3424 commit 0a7a9a0

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

fsspec/dircache.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from __future__ import annotations
2-
import time
3-
from typing import MutableMapping, List, TypedDict, Iterator, Any
42

3+
import time
54
from functools import lru_cache
5+
from typing import Any, Iterator, List, MutableMapping, TypedDict
66

77

88
class DirEntry(TypedDict):

fsspec/mapping.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
from __future__ import annotations
2+
3+
import array
4+
import posixpath
5+
import warnings
6+
from functools import cached_property
27
from typing import (
38
TYPE_CHECKING,
4-
MutableMapping,
5-
Literal,
69
Iterable,
710
Iterator,
8-
overload,
11+
Literal,
12+
MutableMapping,
913
TypeVar,
14+
overload,
1015
)
1116

12-
import array
13-
import posixpath
14-
import warnings
15-
from functools import cached_property
16-
1717
from .core import url_to_fs
1818

1919
if TYPE_CHECKING:

0 commit comments

Comments
 (0)