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 586c2cf commit d4ff136Copy full SHA for d4ff136
python/datafusion/__init__.py
@@ -21,9 +21,6 @@
21
See https://datafusion.apache.org/python for more information.
22
"""
23
24
-# isort: skip_file # Prevent import-sorting linter errors (I001)
25
-# ruff: noqa: I001
26
-
27
from __future__ import annotations
28
29
from typing import Any
@@ -37,7 +34,7 @@
37
34
from . import functions, object_store, substrait, unparser
38
35
39
36
# The following imports are okay to remain as opaque to the user.
40
-from ._internal import Config, EXPECTED_PROVIDER_MSG
+from ._internal import EXPECTED_PROVIDER_MSG, Config
41
from .catalog import Catalog, Database, Table
42
from .col import col, column
43
from .common import DFSchema
0 commit comments