Skip to content

Commit

Permalink
sort imports with isort
Browse files Browse the repository at this point in the history
  • Loading branch information
magdalenakuhn17 committed Nov 19, 2023
1 parent 12ca5d1 commit 8476fa5
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions examples/integrations/collector_service/example_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,23 @@
import time

import pandas as pd

from requests.exceptions import RequestException

from evidently.collector.client import CollectorClient
from evidently.collector.config import CollectorConfig, IntervalTrigger, RowsCountTrigger, ReportConfig
from evidently.collector.config import CollectorConfig
from evidently.collector.config import IntervalTrigger
from evidently.collector.config import ReportConfig
from evidently.collector.config import RowsCountTrigger
from evidently.metrics import ColumnValueRangeMetric
from evidently.report import Report
from evidently.test_suite import TestSuite
from evidently.tests import TestNumberOfOutRangeValues
from evidently.ui.dashboards import DashboardPanelPlot, PanelValue, PlotType, ReportFilter
from evidently.ui.dashboards import DashboardPanelPlot
from evidently.ui.dashboards import PanelValue
from evidently.ui.dashboards import PlotType
from evidently.ui.dashboards import ReportFilter
from evidently.ui.workspace import Workspace


COLLECTOR_ID = "default"
COLLECTOR_TEST_ID = "default_test"

Expand Down

0 comments on commit 8476fa5

Please sign in to comment.