We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5c1faf commit 1850e17Copy full SHA for 1850e17
pandas-stubs/io/orc.pyi
@@ -1,8 +1,5 @@
1
from typing import Any
2
3
-from fsspec.spec import (
4
- AbstractFileSystem, # pyright: ignore[reportMissingTypeStubs]; pyright: ignore[reportUnknownVariableType]
5
-)
6
from pandas import DataFrame
7
from pyarrow.fs import FileSystem
8
@@ -14,6 +11,10 @@ from pandas._typing import (
14
11
ReadBuffer,
15
12
)
16
13
+from fsspec.spec import ( # pyright: ignore[reportMissingTypeStubs] # isort: skip
+ AbstractFileSystem, # pyright: ignore[reportUnknownVariableType]
+)
17
+
18
def read_orc(
19
path: FilePath | ReadBuffer[bytes],
20
columns: list[HashableT] | None = None,
0 commit comments