Skip to content

Commit

Permalink
Move grouping_type module
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaKerman committed Oct 14, 2024
1 parent 86474d7 commit 161330d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion elementary/config/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from google.auth.exceptions import DefaultCredentialsError # type: ignore[import]

from elementary.exceptions.exceptions import InvalidArgumentsError
from elementary.monitor.alerts.alerts_groups import GroupingType
from elementary.monitor.alerts.grouping_type import GroupingType
from elementary.utils.ordered_yaml import OrderedYaml


Expand Down
2 changes: 0 additions & 2 deletions elementary/monitor/alerts/alerts_groups/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
from .alerts_group import AlertsGroup
from .grouped_by_table import GroupedByTableAlerts
from .grouping_type import GroupingType

__all__ = [
"AlertsGroup",
"GroupedByTableAlerts",
"GroupingType",
]
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,8 @@
from alive_progress import alive_it

from elementary.config.config import Config
from elementary.monitor.alerts.alerts_groups import (
AlertsGroup,
GroupedByTableAlerts,
GroupingType,
)
from elementary.monitor.alerts.alerts_groups import AlertsGroup, GroupedByTableAlerts
from elementary.monitor.alerts.grouping_type import GroupingType
from elementary.monitor.alerts.model_alert import ModelAlertModel
from elementary.monitor.alerts.source_freshness_alert import SourceFreshnessAlertModel
from elementary.monitor.alerts.test_alert import TestAlertModel
Expand Down

0 comments on commit 161330d

Please sign in to comment.