From f18ff756405de0b1f7137fb8dac86af144609c82 Mon Sep 17 00:00:00 2001 From: Rahul Sharma Date: Tue, 4 Feb 2025 11:26:35 +0530 Subject: [PATCH] fix: correct import path for CompanyEnrollmentInfo in report_employee_enrollments interface --- .../capabilities/report_employee_enrollments/interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flux_sdk/insurance_broker/capabilities/report_employee_enrollments/interface.py b/flux_sdk/insurance_broker/capabilities/report_employee_enrollments/interface.py index 215322d8..71a263fe 100644 --- a/flux_sdk/insurance_broker/capabilities/report_employee_enrollments/interface.py +++ b/flux_sdk/insurance_broker/capabilities/report_employee_enrollments/interface.py @@ -1,7 +1,7 @@ from abc import ABC, abstractmethod from flux_sdk.flux_core.data_models import Employee, File -from flux_sdk.insurance_borker.report_employee_enrollments.data_models import CompanyEnrollmentInfo +from flux_sdk.insurance_broker.capabilities.report_employee_enrollments.data_models import CompanyEnrollmentInfo class ReportEmployeeEnrollments(ABC):