Skip to content

Commit d4ff136

Browse files
committed
refactor: remove isort and ruff comments to clean up import section
1 parent 586c2cf commit d4ff136

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

python/datafusion/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@
2121
See https://datafusion.apache.org/python for more information.
2222
"""
2323

24-
# isort: skip_file # Prevent import-sorting linter errors (I001)
25-
# ruff: noqa: I001
26-
2724
from __future__ import annotations
2825

2926
from typing import Any
@@ -37,7 +34,7 @@
3734
from . import functions, object_store, substrait, unparser
3835

3936
# The following imports are okay to remain as opaque to the user.
40-
from ._internal import Config, EXPECTED_PROVIDER_MSG
37+
from ._internal import EXPECTED_PROVIDER_MSG, Config
4138
from .catalog import Catalog, Database, Table
4239
from .col import col, column
4340
from .common import DFSchema

0 commit comments

Comments
 (0)