We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c5fe4b commit 975f7bfCopy full SHA for 975f7bf
src/seer/app.py
@@ -97,7 +97,7 @@
97
from seer.tags import AnomalyDetectionTags
98
from seer.trend_detection.trend_detector import BreakpointRequest, BreakpointResponse, find_trends
99
from seer.workflows.compare.models import CompareCohortsRequest, CompareCohortsResponse
100
-from seer.workflows.compare.service import compareCohorts
+from seer.workflows.compare.service import compare_cohorts
101
102
logger = logging.getLogger(__name__)
103
@@ -423,7 +423,7 @@ def delete_alert__data_endpoint(
423
def compare_cohorts_endpoint(
424
data: CompareCohortsRequest,
425
) -> CompareCohortsResponse:
426
- return compareCohorts(data)
+ return compare_cohorts(data)
427
428
429
@blueprint.route("/health/live", methods=["GET"])
0 commit comments