Skip to content

Commit

Permalink
imports
Browse files Browse the repository at this point in the history
  • Loading branch information
R-Palazzo committed Jun 21, 2023
1 parent 6e5c569 commit 42b545a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 3 additions & 1 deletion sdmetrics/reports/single_table/_properties/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
"""Single table properties for sdmetrics."""

from sdmetrics.reports.single_table._properties.base import BaseSingleTableProperty
from sdmetrics.reports.single_table._properties.column_shapes import ColumnShapes

__all__ = [
'BaseSingleTableProperty'
'BaseSingleTableProperty',
'ColumnShapes',
]
3 changes: 1 addition & 2 deletions sdmetrics/reports/single_table/_properties/column_shapes.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
import plotly.express as px

from sdmetrics.reports.single_table._properties import BaseSingleTableProperty
from sdmetrics.single_column.statistical.kscomplement import KSComplement
from sdmetrics.single_column.statistical.tv_complement import TVComplement
from sdmetrics.single_column import KSComplement, TVComplement


class ColumnShapes(BaseSingleTableProperty):
Expand Down

0 comments on commit 42b545a

Please sign in to comment.