Skip to content

Commit

Permalink
relative imports and linting
Browse files Browse the repository at this point in the history
  • Loading branch information
fdosani committed Jun 6, 2024
1 parent dc4a16a commit 47e4f10
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions datacompy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@
import platform
from warnings import warn

from datacompy.polars import PolarsCompare # noqa: F401
from datacompy.spark.pandas import SparkPandasCompare # noqa: F401
from datacompy.spark.sql import SparkSQLCompare # noqa: F401

from .core import * # noqa: F403
from .fugue import ( # noqa: F401
all_columns_match,
Expand All @@ -32,6 +28,9 @@
report,
unq_columns,
)
from .polars import PolarsCompare # noqa: F401
from .spark.pandas import SparkPandasCompare # noqa: F401
from .spark.sql import SparkSQLCompare # noqa: F401

major = platform.python_version_tuple()[0]
minor = platform.python_version_tuple()[1]
Expand Down

0 comments on commit 47e4f10

Please sign in to comment.