Skip to content

Commit 91e7aab

Browse files
Apply ruff/pyupgrade rule UP035
UP035 Import from `collections.abc` instead of `typing`
1 parent 753964f commit 91e7aab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

fsspec/implementations/memory.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
from __future__ import annotations
22

33
import logging
4+
from collections.abc import Sequence
45
from datetime import datetime, timezone
56
from errno import ENOTEMPTY
67
from io import BytesIO
78
from pathlib import PurePath, PureWindowsPath
8-
from typing import Any, ClassVar, Sequence
9+
from typing import Any, ClassVar
910

1011
from fsspec import AbstractFileSystem
1112
from fsspec.implementations.local import LocalFileSystem

0 commit comments

Comments
 (0)