We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 975f7bf commit ca7ef9dCopy full SHA for ca7ef9d
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 compare_cohorts
+from seer.workflows.compare.service import compare_cohort
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 compare_cohorts(data)
+ return compare_cohort(data)
427
428
429
@blueprint.route("/health/live", methods=["GET"])
0 commit comments