Skip to content

Code quality

ALN** occurrences by order of importance

NOQA Number of occurrences
ALN069: You can't import models from other components, see: https://www.notion.so/alaninsurance/Modular-monolith-a9d84f1318d34115bbd08b3648e5a587 ⧉", 239
ALN043: You can only import things from a Component public module, see: https://www.notion.so/alaninsurance/Modular-monolith-a9d84f1318d34115bbd08b3648e5a587 ⧉", 317
ALN027: This class checks that no protected attribute access is used. 8
ALN037: @property are not serialized by dataclass_json. If not a problem for your use case, please ignore (# noqa: ALN037). "See this Notion page: https://www.notion.so/alaninsurance/Dataclass-the-good-parts-8f387ec2a8e24a55af294237b97dc210#a611a9154af448a38e552c61415169df ⧉ 5
ALN041: As the model '{node.name}' is in a component it must be part of specific schema that is declared in components/{self.component_name}/models/helpers.py", 4
ALN047: ForeignKey columns must be indexed. Please add index=True to the Column definition and make sure the migration is created 1
ALN077: Check for usage of backref in SQLAlchemy relationships and suggest using back_populates instead. 1
ALN079: Check for direct instantiation of AlanBaseFactory or its derived classes. Always use the .create() class method instead of direct instantiation. 18
ALN085: Enforces SQLAlchemy 2.0 query style by detecting deprecated patterns that will be removed in SQLAlchemy 2.0. This linter checks for: 1. Usage of session.query() which is deprecated in favor of session.scalar(), session.scalars(), or session.execute() Note: Other SQLAlchemy 2.0 deprecation warnings are already being turned into errors at runtime by the _turn_sql_alchemy_warning_into_errors function in backend/shared/models/orm/sqlalchemy.py. 39
ALN096: Do not set auth headers (Authorization, CF-Access-*, X-Api-Key) inline in HTTP calls. Use a requests.auth.AuthBase subclass instead. This centralizes auth logic, makes credentials easier to rotate, and prevents accidental leaks in logs. Bad: requests.get(url, headers={"Authorization": f"Bearer {token}"}) Good: class BearerAuth(requests.auth.AuthBase): def init(self, token: str) -> None: self.token = token def call(self, r: requests.PreparedRequest) -> requests.PreparedRequest: r.headers["Authorization"] = f"Bearer {self.token}" return r requests.get(url, auth=BearerAuth(token)) 2

Listing of files of the most critical ALN**

ALN069 occurs 239 times

File:line Content
components/growth/internal/commands/self_serve.py:17 ⧉ from components.fr.internal.offer.prevoyance.models.prevoyance_plan import ( # noqa: ALN069
components/growth/internal/commands/self_serve.py:36 ⧉ from components.fr.internal.models.ccn import CCN # noqa: ALN069
components/growth/internal/commands/tests/test_backfill_referral_profiles_for_country.py:4 ⧉ from components.be.internal.models.tests.factories import BeUserFactory # noqa: ALN069
components/growth/internal/models/fr/prospect_quote_request.py:7 ⧉ from components.fr.internal.offer.health.models.plan import Plan # noqa: ALN069
components/growth/internal/models/fr/attribution_signature_success.py:6 ⧉ from components.fr.internal.models.contract import Contract # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/prospection_data.py:16 ⧉ from components.contracting.subcomponents.proposal.internals.models.approval_request import ( # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/prospection_data.py:19 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/prospection_data.py:22 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal_item import ( # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/prospection_data.py:25 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal_item_target import ( # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/prospection_data.py:28 ⧉ from components.customer_admin.internal.models.fr_company_admin import ( # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/prospection_data.py:31 ⧉ from components.fr.internal.billing.models.invoice import Invoice # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/prospection_data.py:33 ⧉ from components.fr.internal.claim_management.claim_engine.steps.reimbursement_payment.models.reimbursement_payment import ( # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/prospection_data.py:36 ⧉ from components.fr.internal.claim_management.claim_engine.steps.settlement.models.care_act_settlement import ( # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/prospection_data.py:39 ⧉ from components.fr.internal.models.alan_employee import AlanEmployee # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/prospection_data.py:40 ⧉ from components.fr.internal.models.contract import Contract # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/prospection_data.py:41 ⧉ from components.fr.internal.models.employment import Employment # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/prospection_data.py:42 ⧉ from components.fr.internal.models.enrollment import Enrollment # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/prospection_data.py:43 ⧉ from components.fr.internal.models.exemption import ( # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/prospection_data.py:47 ⧉ from components.fr.internal.models.insurance_profile import ( # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/prospection_data.py:50 ⧉ from components.fr.internal.models.refresh_token import RefreshToken # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/prospection_data.py:51 ⧉ from components.fr.internal.models.signed_document import SignedDocument # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/prospection_data.py:52 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/prospection_data.py:845 ⧉ from components.fr.internal.models.company import Company # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/tests/test_prospection_data.py:7 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/tests/test_prospection_data.py:16 ⧉ from components.customer_admin.internal.models.fr_company_admin import ( # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/tests/test_prospection_data.py:20 ⧉ from components.fr.internal.claim_management.claim_engine.steps.settlement.models.care_act_settlement import ( # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/tests/test_prospection_data.py:23 ⧉ from components.fr.internal.models.enums.exemption_onboarding_status import ( # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/tests/test_prospection_data.py:26 ⧉ from components.fr.internal.models.exemption import ( # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/tests/test_prospection_data.py:29 ⧉ from components.fr.internal.models.insurance_profile import ( # noqa: ALN069
components/growth/internal/business_logic/data_retention/fr/actions/tests/test_prospection_data.py:32 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/business_logic/referral/actions/tests/test_referral_actions.py:10 ⧉ from components.fr.internal.models.discount import Discount # noqa: ALN069
components/growth/internal/business_logic/referral/actions/tests/test_referral_actions.py:17 ⧉ from components.global_profile.internal.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/referral/actions/tests/test_create_referral_by_admin.py:4 ⧉ from components.global_profile.internal.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/referral/actions/tests/test_create_suggested_referral.py:3 ⧉ from components.global_profile.internal.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/referral/actions/tests/test_send_referral_rewards.py:20 ⧉ from components.global_profile.internal.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/referral/actions/tests/test_send_referred_user_reimbursement.py:7 ⧉ from components.be.internal.billing.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/referral/actions/tests/test_send_referred_user_reimbursement.py:10 ⧉ from components.be.internal.models.enums.be_discount_origin import ( # noqa: ALN069
components/growth/internal/business_logic/referral/actions/tests/test_send_referred_user_reimbursement.py:13 ⧉ from components.be.internal.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/referral/actions/tests/test_send_referred_user_reimbursement.py:18 ⧉ from components.be.internal.models.tests.model_factories.be_discount_factory import ( # noqa: ALN069
components/growth/internal/business_logic/referral/queries/tests/test_referral_queries.py:4 ⧉ from components.global_profile.internal.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/referral/queries/tests/test_get_referral_conditions.py:5 ⧉ from components.global_profile.internal.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/referral/queries/tests/test_get_referrals_info.py:3 ⧉ from components.global_profile.internal.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/fr/can_reward_user.py:1 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/business_logic/referral/country/fr/has_contract_paid_invoice.py:4 ⧉ from components.fr.internal.models.contract import Contract # noqa: ALN069
components/growth/internal/business_logic/referral/country/fr/get_reward_target_type.py:1 ⧉ from components.fr.internal.models.contract import Contract # noqa: ALN069
components/growth/internal/business_logic/referral/country/fr/validate_admin_referral_contract.py:3 ⧉ from components.fr.internal.models.contract import Contract # noqa: ALN069
components/growth/internal/business_logic/referral/country/fr/validate_admin_referral_contract.py:4 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/business_logic/referral/country/fr/get_referred_contract.py:1 ⧉ from components.fr.internal.models.contract import Contract # noqa: ALN069
components/growth/internal/business_logic/referral/country/fr/create_discount.py:1 ⧉ from components.fr.internal.models.discount import Discount # noqa: ALN069
components/growth/internal/business_logic/referral/country/fr/is_alaner.py:1 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/business_logic/referral/country/fr/delete_discount.py:5 ⧉ from components.fr.internal.models.discount import Discount # noqa: ALN069
components/growth/internal/business_logic/referral/country/fr/get_user_settlement_info.py:1 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/business_logic/referral/country/fr/has_discount_for_referral.py:7 ⧉ from components.fr.internal.models.discount import Discount # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/get_all_user_ids.py:5 ⧉ from components.be.internal.models.be_user import BeUser # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/can_reward_user.py:3 ⧉ from components.be.internal.models.be_user import BeUser # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/has_contract_paid_invoice.py:3 ⧉ from components.be.internal.billing.models.be_invoice import BeInvoice # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/has_contract_paid_invoice.py:4 ⧉ from components.be.internal.models.health_contract import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/get_reward_target_type.py:3 ⧉ from components.be.internal.models.health_contract import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/get_reward_target_type.py:6 ⧉ from components.be.internal.models.health_plan import PricingCategory # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/validate_admin_referral_contract.py:5 ⧉ from components.be.internal.models.health_contract import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/get_referred_contract.py:3 ⧉ from components.be.internal.models.health_contract import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/create_discount.py:3 ⧉ from components.be.internal.models.be_discount import BeDiscount # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/create_discount.py:4 ⧉ from components.be.internal.models.enums.be_discount_origin import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/is_alaner.py:3 ⧉ from components.be.internal.models.be_user import BeUser # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/get_discounts_pending_reimbursement.py:4 ⧉ from components.be.internal.billing.models.be_invoice import BeInvoice # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/get_discounts_pending_reimbursement.py:5 ⧉ from components.be.internal.models.be_discount import BeDiscount # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/get_discounts_pending_reimbursement.py:6 ⧉ from components.be.internal.models.enums.be_discount_origin import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/get_user_settlement_info.py:3 ⧉ from components.be.internal.models.be_user import BeUser # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/has_discount_for_referral.py:5 ⧉ from components.be.internal.models.be_discount import BeDiscount # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/has_discount_for_referral.py:6 ⧉ from components.be.internal.models.enums.be_discount_origin import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/tests/test_can_reward_user.py:6 ⧉ from components.be.internal.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/tests/test_validate_admin_referral_contract.py:5 ⧉ from components.be.internal.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/tests/test_has_contract_paid_invoice.py:5 ⧉ from components.be.internal.billing.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/tests/test_has_contract_paid_invoice.py:8 ⧉ from components.be.internal.models.tests.use_case_factories.active_health_contract_factory import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/tests/test_get_reward_target_type.py:5 ⧉ from components.be.internal.models.health_plan import PricingCategory # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/tests/test_get_reward_target_type.py:6 ⧉ from components.be.internal.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/tests/test_get_reward_target_type.py:11 ⧉ from components.be.internal.models.tests.use_case_factories.active_health_contract_factory import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/tests/test_get_referral_contract_info.py:6 ⧉ from components.be.internal.models.health_contract import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/tests/test_get_referral_contract_info.py:9 ⧉ from components.be.internal.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/tests/test_get_referral_contract_info.py:15 ⧉ from components.be.internal.models.tests.use_case_factories.active_health_contract_factory import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/tests/test_get_all_user_ids.py:3 ⧉ from components.be.internal.models.tests.factories import BeUserFactory # noqa: ALN069
components/growth/internal/business_logic/referral/country/be/tests/test_get_user_settlement_info.py:5 ⧉ from components.be.internal.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/get_all_user_ids.py:5 ⧉ from components.es.internal.models.es_user import EsUser # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/validate_admin_referral_contract_es.py:5 ⧉ from components.contracting.subcomponents.subscription.internal.es.models.health_contract import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/can_reward_user.py:6 ⧉ from components.es.internal.models.es_user import EsUser # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/has_contract_paid_invoice.py:3 ⧉ from components.contracting.subcomponents.subscription.internal.es.models.health_contract import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/has_contract_paid_invoice.py:6 ⧉ from components.es.subcomponents.billing.internal.models.es_invoice import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/create_discount.py:3 ⧉ from components.es.internal.models.enums.es_discount_origin import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/create_discount.py:6 ⧉ from components.es.internal.models.es_discount import EsDiscount # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/is_alaner.py:3 ⧉ from components.es.internal.models.es_user import EsUser # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/get_discounts_pending_reimbursement.py:4 ⧉ from components.es.internal.models.enums.es_discount_origin import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/get_discounts_pending_reimbursement.py:7 ⧉ from components.es.internal.models.es_discount import EsDiscount # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/get_discounts_pending_reimbursement.py:8 ⧉ from components.es.subcomponents.billing.internal.models.es_invoice import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/get_referred_contract_es.py:3 ⧉ from components.contracting.subcomponents.subscription.internal.es.models.health_contract import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/get_user_settlement_info.py:3 ⧉ from components.es.internal.models.es_user import EsUser # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/has_discount_for_referral.py:5 ⧉ from components.es.internal.models.enums.es_discount_origin import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/has_discount_for_referral.py:8 ⧉ from components.es.internal.models.es_discount import EsDiscount # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/tests/test_can_reward_user.py:9 ⧉ from components.es.internal.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/tests/test_get_discounts_pending_reimbursement.py:6 ⧉ from components.es.internal.models.enums.es_discount_origin import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/tests/test_get_discounts_pending_reimbursement.py:9 ⧉ from components.es.internal.models.es_discount import EsDiscount # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/tests/test_get_discounts_pending_reimbursement.py:10 ⧉ from components.global_profile.internal.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/tests/test_is_alaner.py:5 ⧉ from components.es.internal.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/tests/test_has_contract_paid_invoice.py:5 ⧉ from components.es.internal.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/tests/test_has_contract_paid_invoice.py:8 ⧉ from components.es.subcomponents.billing.internal.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/tests/test_has_discount_for_referral.py:5 ⧉ from components.es.internal.models.enums.es_discount_origin import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/tests/test_has_discount_for_referral.py:8 ⧉ from components.es.internal.models.es_discount import EsDiscount # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/tests/test_create_discount.py:7 ⧉ from components.es.internal.models.enums.es_discount_origin import ( # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/tests/test_create_discount.py:10 ⧉ from components.es.internal.models.es_discount import EsDiscount # noqa: ALN069
components/growth/internal/business_logic/referral/country/es/tests/test_get_user_settlement_info.py:6 ⧉ from components.es.internal.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/referral/tests/test_email_events.py:3 ⧉ from components.be.internal.models.tests.factories import BeUserFactory # noqa: ALN069
components/growth/internal/business_logic/referral/tests/test_email_events.py:7 ⧉ from components.global_profile.internal.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/prevoyance_upsell/fr/check_can_upsell_prevoyance.py:48 ⧉ from components.fr.internal.models.contract_population import ( # noqa: ALN069
components/growth/internal/business_logic/prevoyance_upsell/fr/check_can_upsell_prevoyance.py:51 ⧉ from components.fr.internal.models.prevoyance_contract import ( # noqa: ALN069
components/growth/internal/business_logic/prevoyance_upsell/fr/create_proposal_for_prevoyance_upsell.py:34 ⧉ from components.fr.internal.models.enums.prevoyance_contract_origin import ( # noqa: ALN069
components/growth/internal/business_logic/prevoyance_upsell/tests/utils.py:17 ⧉ from components.fr.internal.models.ccn import CCN # noqa: ALN069
components/growth/internal/business_logic/prevoyance_upsell/tests/test_check_and_create_proposal_for_prevoyance_upsell.py:13 ⧉ from components.fr.internal.models.enums.prevoyance_guarantee_basis import ( # noqa: ALN069
components/growth/internal/business_logic/prospect/fr/commercial_emails_unsubscription.py:5 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/business_logic/prospect/fr/queries.py:143 ⧉ from components.fr.internal.models.ccn import CCN # noqa: ALN069
components/growth/internal/business_logic/nurturing/customerio_individual_funnel_event.py:4 ⧉ from components.fr.internal.offer.health.models.plan import Plan # noqa: ALN069
components/growth/internal/business_logic/nurturing/fr/prospect_funnel_company.py:6 ⧉ from components.fr.internal.models.enums.professional_category import ( # noqa: ALN069
components/growth/internal/business_logic/nurturing/fr/prospect_funnel_company.py:9 ⧉ from components.fr.internal.offer.health.models.plan import Plan # noqa: ALN069
components/growth/internal/business_logic/nurturing/fr/prospect_quote_request_get_documents.py:18 ⧉ from components.fr.internal.offer.health.models.plan import Plan # noqa: ALN069
components/growth/internal/business_logic/nurturing/fr/plan_displayed_year.py:6 ⧉ from components.fr.internal.offer.health.models.plan import Plan # noqa: ALN069
components/growth/internal/business_logic/nurturing/fr/customerio_company_funnel_event.py:6 ⧉ from components.fr.internal.models.ccn import CCN # noqa: ALN069
components/growth/internal/business_logic/nurturing/fr/customerio_company_funnel_event.py:7 ⧉ from components.fr.internal.offer.health.models.plan import Plan # noqa: ALN069
components/growth/internal/business_logic/nurturing/tests/test_entities.py:13 ⧉ from components.offer_builder.internal.models.factories.builder_coverage import ( # noqa: ALN069
components/growth/internal/business_logic/nurturing/tests/test_prospect_quote_request_model.py:3 ⧉ from components.fr.internal.offer.health.models.plan import Plan # noqa: ALN069
components/growth/internal/business_logic/self_serve/conftest.py:6 ⧉ from components.offer_builder.internal.models.factories.target_margin_mapping import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/conftest.py:9 ⧉ from components.offer_builder.subcomponents.pricer.internal.country_specific.fr.models.tests.factories.ape_code_to_industry_mapping import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/actions/company_health.py:4 ⧉ from components.fr.internal.models.enums.professional_category import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/actions/self_serve_flow.py:4 ⧉ from components.contracting.external.models import ( # noqa: ALN069 - not a model but an enum
components/growth/internal/business_logic/self_serve/fr/actions/self_serve_flow.py:11 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/actions/tests/test_self_serve_flow.py:13 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/actions/tests/test_self_serve_flow.py:16 ⧉ from components.fr.internal.models.enums.professional_category import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/actions/tests/test_company_health.py:7 ⧉ from components.fr.internal.models.enums.professional_category import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/actions/tests/test_company_health.py:25 ⧉ from components.offer_builder.internal.models.factories.builder_coverage import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/company_ccn.py:4 ⧉ from components.fr.internal.models.ccn_siret_mapping import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/company_prevoyance.py:5 ⧉ from components.fr.internal.models.company import Company # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/company_prevoyance.py:72 ⧉ from components.fr.internal.models.account import Account # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/company_prevoyance.py:73 ⧉ from components.fr.internal.models.contract import Contract # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/company_prevoyance.py:74 ⧉ from components.fr.internal.models.prevoyance_contract import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/company_prevoyance.py:171 ⧉ from components.fr.internal.models.account import Account # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/company_prevoyance.py:172 ⧉ from components.fr.internal.models.prevoyance_contract import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/company_health.py:5 ⧉ from components.fr.internal.models.ccn import SYNTEC_CCN_CODE # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/company_health.py:6 ⧉ from components.fr.internal.models.enums.professional_category import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/legal_info.py:4 ⧉ from components.fr.internal.models.company import Company # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/legal_info.py:5 ⧉ from components.fr.internal.models.contract import Contract # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_prevoyance.py:6 ⧉ from components.fr.internal.models.enums.professional_category import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_health.py:9 ⧉ from components.fr.internal.models.ccn import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_health.py:14 ⧉ from components.fr.internal.models.enums.professional_category import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_health.py:38 ⧉ from components.offer_builder.internal.models.builder_template import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_health.py:41 ⧉ from components.offer_builder.internal.models.factories.builder_coverage import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_health.py:44 ⧉ from components.offer_builder.internal.models.factories.builder_target import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_health.py:47 ⧉ from components.offer_builder.internal.models.factories.builder_template import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_health.py:74 ⧉ from components.offer_builder.subcomponents.pricer.internal.country_specific.fr.models.tests.factories.demographics_model_entry import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/es/actions/self_serve_flow.py:11 ⧉ from components.es.internal.models.es_user import EsUser # noqa: ALN069
components/growth/internal/business_logic/self_serve/es/actions/tests/test_self_serve_flow.py:160 ⧉ from components.es.internal.models.tests.factories import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/country/self_serve_country_router.py:49 ⧉ from components.fr.internal.models.company import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/country/self_serve_country_router.py:52 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/business_logic/self_serve/country/self_serve_country_router.py:306 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/business_logic/self_serve/country/self_serve_country_router.py:321 ⧉ from components.es.internal.models.es_user import EsUser # noqa: ALN069
components/growth/internal/business_logic/crm/country/crm_country_router.py:54 ⧉ from components.fr.internal.models.user import ( # noqa: ALN069
components/growth/internal/business_logic/crm/country/crm_country_router.py:73 ⧉ from components.be.internal.models.be_user import BeUser # noqa: ALN069
components/growth/internal/business_logic/crm/country/crm_country_router.py:92 ⧉ from components.es.internal.models.es_user import EsUser # noqa: ALN069
components/growth/internal/business_logic/crm/country/crm_country_router.py:129 ⧉ from components.fr.internal.models.alan_employee import ( # noqa: ALN069
components/growth/internal/business_logic/crm/country/crm_country_router.py:172 ⧉ from components.fr.internal.models.user import ( # noqa: ALN069
components/growth/internal/business_logic/crm/country/fr/self_serve_intercom_client.py:8 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/business_logic/crm/country/fr/intercom_message_templates.py:5 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/business_logic/crm/country/fr/notify_contract_signature.py:1 ⧉ from components.fr.internal.models.company import Company # noqa: ALN069
components/growth/internal/business_logic/crm/country/fr/notify_contract_signature.py:2 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/business_logic/crm/country/fr/quote_request.py:14 ⧉ from components.fr.internal.models.care_conversation_context import ( # noqa: ALN069
components/growth/internal/business_logic/crm/country/fr/quote_request.py:17 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/business_logic/crm/country/fr/quote_request.py:22 ⧉ from components.fr.internal.resolution_platform.models.care_conversation_backlog import ( # noqa: ALN069
components/growth/internal/business_logic/crm/country/fr/quote_request.py:25 ⧉ from components.fr.internal.resolution_platform.models.care_conversation_backlog_tag import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/set_proposal_step.py:7 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/set_proposal_inactive.py:9 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/proposal.py:14 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/proposal.py:27 ⧉ from components.fr.internal.models.company import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/proposal.py:30 ⧉ from components.fr.internal.models.user import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/proposal_onboarding_status.py:1 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/proposal_onboarding_status.py:4 ⧉ from components.fr.internal.models.enums.company_onboarding_status import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/event_on_proposal_approved.py:23 ⧉ from components.fr.internal.models.company import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/event_on_proposal_approved.py:26 ⧉ from components.fr.internal.models.contract import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/event_on_proposal_approved.py:29 ⧉ from components.fr.internal.models.user import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/plan.py:3 ⧉ from components.fr.internal.models.company import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/plan.py:6 ⧉ from components.fr.internal.models.enums.professional_category import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/step_company_signup.py:13 ⧉ from components.contracting.external.models import ProfessionalCategory # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/step_company_signup.py:31 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/step_company_signup.py:56 ⧉ from components.fr.internal.models.company import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/step_company_signup.py:59 ⧉ from components.fr.internal.models.enums.prevoyance_contract_origin import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/step_company_signup.py:62 ⧉ from components.fr.internal.models.prevoyance_contract import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/step_company_signup.py:65 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/step_prepare_signature.py:14 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/step_prepare_signature.py:17 ⧉ from components.fr.internal.models.user import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/proposal_checks.py:15 ⧉ from components.fr.internal.models.enums.professional_category import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/step_individual_signup.py:24 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/step_individual_signup.py:39 ⧉ from components.fr.internal.models.insurance_profile import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/step_individual_signup.py:42 ⧉ from components.fr.internal.models.user import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/presenters/self_served_presenter.py:14 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/presenters/self_served_presenter.py:20 ⧉ from components.fr.internal.models.company import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/presenters/self_served_presenter.py:23 ⧉ from components.fr.internal.models.enums.professional_category import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/presenters/self_served_presenter.py:26 ⧉ from components.fr.internal.offer.health.models.plan import Plan # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/presenters/self_served_individual_proposal.py:10 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/presenters/self_served_individual_proposal.py:16 ⧉ from components.fr.internal.models.user import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/fr/presenters/self_served_individual_proposal.py:20 ⧉ from components.fr.internal.offer.health.models.plan import Plan # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/es/event_on_proposal_approved.py:44 ⧉ from components.contracting.subcomponents.subscription.internal.es.models.health_contract import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/es/step_company_signup.py:39 ⧉ from components.es.internal.models.es_address import EsAddress # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/es/step_company_signup.py:40 ⧉ from components.es.internal.models.es_company import EsCompany # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/es/step_prepare_signature.py:18 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/tests/test_self_serve_subscription.py:16 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/tests/test_self_serve_subscription.py:19 ⧉ from components.fr.internal.models.enums.company_onboarding_status import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/tests/test_self_serve_subscription.py:22 ⧉ from components.fr.internal.models.enums.professional_category import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/tests/test_individual_self_serve.py:14 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/tests/test_individual_self_serve.py:20 ⧉ from components.fr.internal.models.enums.employee_termination_type import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/tests/utils.py:4 ⧉ from components.fr.internal.models.ccn import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/tests/utils.py:7 ⧉ from components.fr.internal.models.company import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/tests/utils.py:10 ⧉ from components.fr.internal.models.user import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/tests/test_proposal_checks.py:3 ⧉ from components.contracting.external.models import ProfessionalCategory # noqa: ALN069
components/growth/internal/business_logic/self_serve_subscription/tests/test_set_proposal_inactive.py:7 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN069
components/growth/internal/entities/company_signup_schema.py:7 ⧉ from components.contracting.external.models import ProfessionalCategory # noqa: ALN069
components/growth/internal/entities/company_signup_schema.py:8 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN069
components/growth/internal/entities/self_serve.py:10 ⧉ from components.contracting.external.models import ( # noqa: ALN069
components/growth/internal/entities/self_serve.py:17 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN069
components/growth/internal/entities/self_serve.py:225 ⧉ from components.fr.internal.offer.prevoyance.models.prevoyance_plan import ( # noqa: ALN069
components/growth/internal/entities/self_serve.py:471 ⧉ from components.fr.internal.models.company import ( # noqa: ALN069
components/growth/internal/entities/self_serve.py:474 ⧉ from components.fr.internal.offer.health.models.plan import Plan # noqa: ALN069
components/growth/internal/controllers/self_serve_progress.py:11 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN069
components/growth/internal/controllers/fr/self_serve_subscription.py:165 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/controllers/fr/self_serve_subscription.py:233 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/controllers/fr/self_serve_subscription.py:362 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/controllers/fr/prevoyance_offers.py:50 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/controllers/fr/prevoyance_offers.py:74 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/controllers/fr/prevoyance_upsell.py:9 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/controllers/tests/test_email_capture_endpoints.py:6 ⧉ from components.fr.internal.offer.health.models.plan import ( # noqa: ALN069
components/growth/internal/controllers/tests/test_funnel_smorest_migration.py:11 ⧉ from components.be.internal.models.tests.factories import ( # noqa: ALN069
components/growth/internal/controllers/tests/test_self_serve.py:9 ⧉ from components.fr.internal.models.enums.professional_category import ( # noqa: ALN069
components/growth/internal/controllers/tests/test_self_serve.py:16 ⧉ from components.global_account.internal.models.builder_prospect import ( # noqa: ALN069
components/growth/internal/controllers/tests/test_prepare_signature_smorest_migration.py:11 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN069
components/growth/internal/controllers/tests/test_quote_request_endpoints.py:7 ⧉ from components.fr.internal.offer.health.models.plan import ( # noqa: ALN069

ALN043 occurs 317 times

File:line Content
components/growth/internal/commands/self_serve.py:59 ⧉ from components.fr.internal.business_logic.ccn.queries.ccn_prevoyance import ( # noqa: ALN043
components/growth/internal/business_logic/data_retention/fr/actions/prospection_data.py:13 ⧉ from components.contracting.subcomponents.proposal.api.main import ( # noqa: ALN043
components/growth/internal/business_logic/data_retention/fr/actions/prospection_data.py:32 ⧉ from components.fr.internal.business_logic.helpers.delete import Deleter # noqa: ALN043
components/growth/internal/business_logic/data_retention/fr/actions/tests/test_prospection_data.py:10 ⧉ from components.contracting.subcomponents.proposal.tests.factories.global_models import ( # noqa: ALN043
components/growth/internal/business_logic/data_retention/fr/actions/tests/test_prospection_data.py:19 ⧉ from components.fr.internal.business_logic.helpers.delete import Deleter # noqa: ALN043
components/growth/internal/business_logic/data_retention/fr/actions/tests/test_prospection_data.py:33 ⧉ from components.fr.internal.tests.factories.employment import ( # noqa: ALN043
components/growth/internal/business_logic/data_retention/fr/actions/tests/test_prospection_data.py:36 ⧉ from components.fr.internal.tests.factories.exemption import ( # noqa: ALN043
components/growth/internal/business_logic/data_retention/fr/actions/tests/test_prospection_data.py:39 ⧉ from components.fr.internal.tests.factories.fr_alan_employee_factory import ( # noqa: ALN043
components/growth/internal/business_logic/data_retention/fr/actions/tests/test_prospection_data.py:42 ⧉ from components.fr.internal.tests.factories.insurance_profile import ( # noqa: ALN043
components/growth/internal/business_logic/data_retention/fr/actions/tests/test_prospection_data.py:45 ⧉ from components.fr.internal.tests.factories.policy import ( # noqa: ALN043
components/growth/internal/business_logic/data_retention/fr/actions/tests/test_prospection_data.py:50 ⧉ from components.fr.internal.tests.factories.refresh_token import ( # noqa: ALN043
components/growth/internal/business_logic/data_retention/fr/actions/tests/test_prospection_data.py:53 ⧉ from components.fr.internal.tests.factories.user import UserFactory # noqa: ALN043
components/growth/internal/business_logic/referral/actions/tests/test_referral_actions.py:7 ⧉ from components.fr.internal.billing.tests.factories.invoice import ( # noqa: ALN043
components/growth/internal/business_logic/referral/actions/tests/test_referral_actions.py:11 ⧉ from components.fr.internal.tests.factories.contract import ( # noqa: ALN043
components/growth/internal/business_logic/referral/actions/tests/test_referral_actions.py:14 ⧉ from components.fr.internal.tests.factories.policy import ( # noqa: ALN043
components/growth/internal/business_logic/referral/actions/tests/test_send_referral_rewards.py:7 ⧉ from components.fr.internal.billing.tests.factories.invoice import ( # noqa: ALN043
components/growth/internal/business_logic/referral/actions/tests/test_send_referral_rewards.py:10 ⧉ from components.fr.internal.tests.factories.contract import ( # noqa: ALN043
components/growth/internal/business_logic/referral/actions/tests/test_send_referral_rewards.py:13 ⧉ from components.fr.internal.tests.factories.employment import ( # noqa: ALN043
components/growth/internal/business_logic/referral/actions/tests/test_send_referral_rewards.py:16 ⧉ from components.fr.internal.tests.factories.user import ( # noqa: ALN043
components/growth/internal/business_logic/referral/queries/tests/test_referral_queries.py:3 ⧉ from components.fr.internal.tests.factories.user import UserFactory # noqa: ALN043
components/growth/internal/business_logic/referral/country/fr/has_contract_paid_invoice.py:1 ⧉ from components.fr.internal.billing.business_logic.queries.invoice import ( # noqa: ALN043
components/growth/internal/business_logic/referral/country/fr/get_referred_contract.py:16 ⧉ from components.fr.internal.billing.business_logic.queries.invoice import ( # noqa: ALN043
components/growth/internal/business_logic/referral/country/fr/get_referred_contract.py:19 ⧉ from components.fr.internal.business_logic.health_pricing.policy import ( # noqa: ALN043
components/growth/internal/business_logic/referral/country/fr/tests/test_has_contract_paid_invoice.py:1 ⧉ from components.fr.internal.billing.tests.factories.invoice import ( # noqa: ALN043
components/growth/internal/business_logic/referral/country/fr/tests/test_has_contract_paid_invoice.py:4 ⧉ from components.fr.internal.tests.factories.contract import ( # noqa: ALN043
components/growth/internal/business_logic/referral/country/fr/tests/test_get_reward_target_type.py:1 ⧉ from components.fr.internal.tests.factories.contract import ( # noqa: ALN043
components/growth/internal/business_logic/referral/country/fr/tests/test_get_user_settlement_info.py:1 ⧉ from components.fr.internal.tests.factories.user import ( # noqa: ALN043
components/growth/internal/business_logic/referral/country/be/tests/conftest.py:13 ⧉ from components.be.bootstrap.dependencies.customer_admin import ( # noqa: ALN043
components/growth/internal/business_logic/referral/country/es/can_reward_user.py:3 ⧉ from components.es.internal.constants import ( # noqa: ALN043
components/growth/internal/business_logic/referral/country/es/get_user_settlement_info.py:22 ⧉ from components.es.internal.business_logic.iban import iban_logic # noqa: ALN043
components/growth/internal/business_logic/referral/country/es/tests/test_can_reward_user.py:6 ⧉ from components.es.internal.constants import ( # noqa: ALN043
components/growth/internal/business_logic/referral/tests/test_email_events.py:4 ⧉ from components.fr.internal.tests.factories.user import ( # noqa: ALN043
components/growth/internal/business_logic/prevoyance_upsell/fr/check_can_upsell_prevoyance.py:5 ⧉ from components.fr.internal.errors.error_code import ErrorCode # noqa: ALN043
components/growth/internal/business_logic/prevoyance_upsell/fr/check_can_upsell_prevoyance.py:34 ⧉ from components.contracting.external.company import ( # noqa: ALN043
components/growth/internal/business_logic/prevoyance_upsell/fr/check_and_create_proposal_for_prevoyance_upsell.py:5 ⧉ from components.contracting.utils.errors import ( # noqa: ALN043
components/growth/internal/business_logic/prevoyance_upsell/fr/create_proposal_for_prevoyance_upsell.py:7 ⧉ from components.contracting.external.legal_documents import ( # noqa: ALN043
components/growth/internal/business_logic/prevoyance_upsell/fr/create_proposal_for_prevoyance_upsell.py:10 ⧉ from components.contracting.external.subscriptor.fr.company import ( # noqa: ALN043
components/growth/internal/business_logic/prevoyance_upsell/fr/create_proposal_for_prevoyance_upsell.py:13 ⧉ from components.contracting.external.subscriptor.fr.user import ( # noqa: ALN043
components/growth/internal/business_logic/prevoyance_upsell/fr/create_proposal_for_prevoyance_upsell.py:30 ⧉ from components.contracting.subcomponents.proposal.plugins.legacy_termination_fr.enums import ( # noqa: ALN043
components/growth/internal/business_logic/prevoyance_upsell/tests/utils.py:3 ⧉ from components.fr.internal.tests.factories.company import ( # noqa: ALN043
components/growth/internal/business_logic/prevoyance_upsell/tests/utils.py:6 ⧉ from components.fr.internal.tests.factories.contract import ( # noqa: ALN043
components/growth/internal/business_logic/prevoyance_upsell/tests/utils.py:9 ⧉ from components.fr.internal.tests.factories.employment import ( # noqa: ALN043
components/growth/internal/business_logic/prevoyance_upsell/tests/utils.py:12 ⧉ from components.fr.internal.tests.factories.plan import ( # noqa: ALN043
components/growth/internal/business_logic/prevoyance_upsell/tests/test_check_and_create_proposal_for_prevoyance_upsell.py:6 ⧉ from components.contracting.external.tests_imports import ( # noqa: ALN043
components/growth/internal/business_logic/prevoyance_upsell/tests/test_check_and_create_proposal_for_prevoyance_upsell.py:10 ⧉ from components.contracting.subcomponents.proposal.internals.document_providers.hellosign_provider import ( # noqa: ALN043
components/growth/internal/business_logic/prevoyance_upsell/tests/test_check_and_create_proposal_for_prevoyance_upsell.py:16 ⧉ from components.fr.internal.tests.factories.ccn import CCNFactory # noqa: ALN043
components/growth/internal/business_logic/prevoyance_upsell/tests/test_check_and_create_proposal_for_prevoyance_upsell.py:17 ⧉ from components.fr.internal.tests.factories.prevoyance_plan import ( # noqa: ALN043
components/growth/internal/business_logic/prevoyance_upsell/tests/test_check_and_create_proposal_for_prevoyance_upsell.py:20 ⧉ from components.fr.internal.tests.factories.user import UserFactory # noqa: ALN043
components/growth/internal/business_logic/prevoyance_upsell/tests/test_create_proposal_for_prevoyance_upsell.py:11 ⧉ from components.fr.internal.tests.factories.ccn import CCNFactory # noqa: ALN043
components/growth/internal/business_logic/prevoyance_upsell/tests/test_create_proposal_for_prevoyance_upsell.py:12 ⧉ from components.fr.internal.tests.factories.prevoyance_plan import ( # noqa: ALN043
components/growth/internal/business_logic/accountant/fr/add_accountants_as_admins.py:13 ⧉ from components.fr.internal.business_logic.company.actions.admined_entity import ( # noqa: ALN043
components/growth/internal/business_logic/accountant/fr/add_accountants_as_admins.py:16 ⧉ from components.fr.internal.business_logic.company.queries.admined_entity import ( # noqa: ALN043
components/growth/internal/business_logic/accountant/fr/get_accountants_for_accounting_firm.py:12 ⧉ from components.fr.internal.salesforce.api.main import ( # noqa: ALN043
components/growth/internal/business_logic/accountant/fr/get_accounting_firm.py:5 ⧉ from components.fr.internal.salesforce.api.main import ( # noqa: ALN043
components/growth/internal/business_logic/accountant/fr/get_accountant.py:10 ⧉ from components.fr.internal.salesforce.api.main import ( # noqa: ALN043
components/growth/internal/business_logic/accountant/tests/test_add_accountants_as_admins.py:3 ⧉ from components.fr.internal.business_logic.company.queries.admin import ( # noqa: ALN043
components/growth/internal/business_logic/accountant/tests/test_add_accountants_as_admins.py:6 ⧉ from components.fr.internal.tests.factories.company import ( # noqa: ALN043
components/growth/internal/business_logic/accountant/tests/test_add_accountants_as_admins.py:9 ⧉ from components.fr.internal.tests.factories.company_admin import ( # noqa: ALN043
components/growth/internal/business_logic/accountant/tests/test_add_accountants_as_admins.py:12 ⧉ from components.fr.internal.tests.factories.user import UserFactory # noqa: ALN043
components/growth/internal/business_logic/prospect/fr/commercial_emails_unsubscription.py:1 ⧉ from components.fr.internal.business_logic.company.queries.employment import ( # noqa: ALN043
components/growth/internal/business_logic/prospect/fr/commercial_emails_unsubscription.py:4 ⧉ from components.fr.internal.errors.error_code import ErrorCode # noqa: ALN043
components/growth/internal/business_logic/prospect/fr/commercial_emails_unsubscription.py:6 ⧉ from components.fr.internal.services.tracking.profile.events import ( # noqa: ALN043
components/growth/internal/business_logic/prospect/fr/register_prospect_with_qualification.py:6 ⧉ from components.fr.internal.offer.health.enums.plan import PlanSegment # noqa: ALN043
components/growth/internal/business_logic/prospect/fr/register_prospect_with_qualification.py:7 ⧉ from components.fr.internal.resolution_platform.business_logic.queries.conversation_context import ( # noqa: ALN043
components/growth/internal/business_logic/prospect/fr/queries.py:134 ⧉ from components.fr.internal.business_logic.company.queries.company import ( # noqa: ALN043
components/growth/internal/business_logic/prospect/fr/queries.py:137 ⧉ from components.fr.internal.business_logic.company.queries.contract import ( # noqa: ALN043
components/growth/internal/business_logic/prospect/fr/queries.py:140 ⧉ from components.fr.internal.business_logic.user.queries.user import ( # noqa: ALN043
components/growth/internal/business_logic/prospect/fr/queries.py:144 ⧉ from components.fr.internal.salesforce.api.main import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/prospect_funnel_individual.py:6 ⧉ from components.fr.internal.offer.health.enums.plan import PlanSegment # noqa: ALN043
components/growth/internal/business_logic/nurturing/prospect_funnel_individual.py:7 ⧉ from components.fr.internal.offer.health.queries.plan import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/fr/prospect_funnel_company.py:59 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/fr/prospect_quote_request_get_documents.py:12 ⧉ from components.fr.internal.controllers.helpers.cio_tracking import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/fr/prospect_quote_request_get_documents.py:15 ⧉ from components.fr.internal.offer.health.enums.unsigned_document_type import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/fr/prospect_quote_request_get_documents.py:19 ⧉ from components.fr.internal.offer.health.queries.plan import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/fr/prospect_quote_request_get_documents.py:22 ⧉ from components.fr.internal.offer.health.queries.plan_pdf_helpers import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/fr/prospect_quote_request_get_documents.py:25 ⧉ from components.fr.internal.services.pdf_document import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/fr/prospect_quote_request_get_documents.py:235 ⧉ from components.contracting.external.document.api.entities.document import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/fr/prospect_quote_request_get_documents.py:238 ⧉ from components.contracting.subcomponents.proposal.plugins.shared.fr.health.templates import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/fr/prospect_quote_request_get_documents.py:320 ⧉ from components.contracting.external.document.api.entities.document import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/fr/prospect_quote_request_get_documents.py:325 ⧉ from components.contracting.subcomponents.proposal.plugins.shared.fr.health.templates import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/fr/prospect_quote_request_get_documents.py:329 ⧉ from components.fr.internal.offer.health.enums.plan import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/fr/prospect_quote_request_get_documents.py:332 ⧉ from components.fr.internal.offer.health.enums.unsigned_document_type import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/fr/quote_request_utils.py:3 ⧉ from components.fr.internal.business_logic.company.queries.company import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/fr/quote_request_utils.py:6 ⧉ from components.fr.internal.business_logic.contract.queries.health_contracts import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/fr/quote_request_utils.py:10 ⧉ from components.fr.internal.business_logic.user.queries.user import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/fr/quote_request.py:5 ⧉ from components.fr.internal.offer.health.enums.plan import PlanSegment # noqa: ALN043
components/growth/internal/business_logic/nurturing/fr/customerio_company_funnel_event.py:18 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/tests/test_prospect_quote_request.py:5 ⧉ from components.fr.internal.offer.health.enums.plan import PlanSegment # noqa: ALN043
components/growth/internal/business_logic/nurturing/tests/test_prospect_quote_request.py:6 ⧉ from components.fr.internal.tests.factories.ccn import CCNFactory # noqa: ALN043
components/growth/internal/business_logic/nurturing/tests/test_prospect_quote_request.py:7 ⧉ from components.fr.internal.tests.factories.plan import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/tests/test_prospect_quote_request.py:11 ⧉ from components.fr.internal.tests.factories.price_rule import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/tests/test_prospect_quote_request.py:26 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/tests/test_create_inbound_sales_individual_quote_request.py:4 ⧉ from components.fr.internal.offer.health.enums.plan import PlanSegment # noqa: ALN043
components/growth/internal/business_logic/nurturing/tests/test_create_inbound_sales_individual_quote_request.py:5 ⧉ from components.fr.internal.tests.factories.plan import PlanFullFactory # noqa: ALN043
components/growth/internal/business_logic/nurturing/tests/test_entities.py:3 ⧉ from components.fr.internal.tests.factories.plan import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/tests/test_entities.py:16 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/tests/test_prospect_quote_request_model.py:4 ⧉ from components.fr.internal.tests.factories.ccn import CCNFactory # noqa: ALN043
components/growth/internal/business_logic/nurturing/tests/test_prospect_quote_request_model.py:5 ⧉ from components.fr.internal.tests.factories.plan import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/tests/test_prospect_quote_request_model.py:9 ⧉ from components.fr.internal.tests.factories.prevoyance_plan import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/tests/test_quote_request_utils.py:5 ⧉ from components.fr.internal.tests.factories.company import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/tests/test_quote_request_utils.py:8 ⧉ from components.fr.internal.tests.factories.contract import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/tests/test_create_inbound_sales_company_quote_request.py:4 ⧉ from components.fr.internal.tests.factories.plan import PlanFullFactory # noqa: ALN043
components/growth/internal/business_logic/nurturing/tests/test_create_inbound_sales_company_quote_request.py:12 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/conftest.py:3 ⧉ from components.offer_builder.internal.country_specific.fr.enums.fr_target_margin_mapping_type import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/conftest.py:12 ⧉ from components.offer_builder.test_data import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/company_health.py:11 ⧉ from components.offer_builder.internal.country_specific.fr.enums.fr_premiumness import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/company_health.py:18 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/company_health.py:51 ⧉ from components.global_account.internal.actions.builder_prospect import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/company_health.py:201 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/company_health.py:342 ⧉ from components.offer_builder.shared.enums.price_structure_type import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/company_health.py:345 ⧉ from components.offer_builder.subcomponents.pricer_v1.protected.entities.price_structure import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/tests/test_self_serve_flow.py:19 ⧉ from components.fr.internal.tests.factories.ccn import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/tests/test_self_serve_flow.py:22 ⧉ from components.fr.internal.tests.factories.cnp_id import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/tests/test_self_serve_flow.py:25 ⧉ from components.fr.internal.tests.factories.insurance_company import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/tests/test_self_serve_flow.py:28 ⧉ from components.fr.internal.tests.factories.plan import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/tests/test_self_serve_flow.py:31 ⧉ from components.fr.internal.tests.factories.prevoyance_plan import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/tests/test_self_serve_flow.py:34 ⧉ from components.fr.internal.tests.factories.user import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/tests/test_self_serve_flow.py:59 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/tests/test_company_health.py:10 ⧉ from components.fr.internal.tests.factories.account import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/tests/test_company_health.py:13 ⧉ from components.fr.internal.tests.factories.ccn import CCNFactory # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/tests/test_company_health.py:14 ⧉ from components.global_account.internal.tests.factories.builder_prospect import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/tests/test_company_health.py:40 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/tests/test_company_health.py:43 ⧉ from components.offer_builder.shared.enums.price_structure_type import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/company_ccn.py:1 ⧉ from components.fr.internal.business_logic.ccn.queries.ccn import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/company_ccn.py:7 ⧉ from components.fr.internal.services.views import ccn_from_ape_service # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/company_prevoyance.py:53 ⧉ from components.fr.internal.business_logic.ccn.queries.ccn import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/company_health.py:14 ⧉ from components.offer_builder.internal.country_specific.fr.enums.fr_price_target import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/company_health.py:17 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/company_health.py:23 ⧉ from components.offer_builder.shared.enums.price_structure_type import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/legal_info.py:3 ⧉ from components.fr.internal.errors.error_code import ErrorCode # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/legal_info.py:6 ⧉ from components.fr.internal.services.societeinfo import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_legal_info.py:7 ⧉ from components.fr.internal.services.societeinfo import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_legal_info.py:11 ⧉ from components.fr.internal.tests.factories.contract import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_ccn.py:4 ⧉ from components.fr.internal.tests.factories.ccn import CCNFactory # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_ccn.py:5 ⧉ from components.fr.internal.tests.factories.ccn_siret_mapping import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_prevoyance.py:9 ⧉ from components.fr.internal.offer.prevoyance.enums.prevoyance_cg_part import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_prevoyance.py:12 ⧉ from components.fr.internal.tests.factories.account import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_prevoyance.py:15 ⧉ from components.fr.internal.tests.factories.account_setting import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_prevoyance.py:18 ⧉ from components.fr.internal.tests.factories.ccn import CCNFactory # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_prevoyance.py:19 ⧉ from components.fr.internal.tests.factories.company import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_prevoyance.py:23 ⧉ from components.fr.internal.tests.factories.prevoyance_contract import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_prevoyance.py:26 ⧉ from components.fr.internal.tests.factories.prevoyance_guarantee import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_prevoyance.py:29 ⧉ from components.fr.internal.tests.factories.prevoyance_plan import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_health.py:6 ⧉ from components.fr.internal.business_logic.employment.entities.employment_detail import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_health.py:17 ⧉ from components.fr.internal.tests.factories.ccn import CCNFactory # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_health.py:18 ⧉ from components.global_account.internal.tests.factories.builder_prospect import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_health.py:32 ⧉ from components.offer_builder.internal.country_specific.fr.enums.fr_price_target import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_health.py:35 ⧉ from components.offer_builder.internal.country_specific.fr.enums.fr_pricer_version import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_health.py:68 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_health.py:71 ⧉ from components.offer_builder.shared.enums.price_structure_type import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/tests/test_company_health.py:77 ⧉ from components.offer_builder.subcomponents.pricer_v1.protected.entities.price_structure import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/es/actions/self_serve_flow.py:388 ⧉ from components.es.internal.onboarding.signup import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/es/actions/self_serve_documents.py:19 ⧉ from components.es.internal.business_logic.contracts_management.legal_documents.entities import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/es/actions/self_serve_documents.py:40 ⧉ from components.es.external.contracting.enums import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/es/actions/self_serve_documents.py:151 ⧉ from components.es.external.contracting.enums import ProductType # noqa: ALN043
components/growth/internal/business_logic/self_serve/es/actions/self_serve_documents.py:152 ⧉ from components.es.internal.business_logic.contracts_management.legal_documents.ipid import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/es/actions/self_serve_documents.py:370 ⧉ from components.es.internal.business_logic.contracts_management.legal_documents.entities import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/es/actions/health_offers.py:30 ⧉ from components.offer_builder.internal.entities.builder_product import ( # noqa: ALN043
components/growth/internal/business_logic/crm/attribution.py:8 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/crm/country/crm_country_router.py:126 ⧉ from components.fr.internal.business_logic.user.queries.user import ( # noqa: ALN043
components/growth/internal/business_logic/crm/country/crm_country_router.py:175 ⧉ from components.fr.internal.resolution_platform.business_logic.helpers.intercom_admin_id_mapping import ( # noqa: ALN043
components/growth/internal/business_logic/crm/country/crm_country_router.py:206 ⧉ from components.fr.internal.resolution_platform.business_logic.helpers.intercom_admin_id_mapping import ( # noqa: ALN043
components/growth/internal/business_logic/crm/country/crm_country_router.py:383 ⧉ from components.fr.internal.resolution_platform.business_logic.actions.conversation_context import ( # noqa: ALN043
components/growth/internal/business_logic/crm/country/crm_country_router.py:394 ⧉ from components.be.internal.services.intercom.actions.conversation_context import ( # noqa: ALN043
components/growth/internal/business_logic/crm/country/crm_country_router.py:421 ⧉ from components.fr.internal.mail.app_mailers.unauthenticated_user import ( # noqa: ALN043
components/growth/internal/business_logic/crm/country/crm_country_router.py:429 ⧉ from components.be.internal.services.intercom.async_user_intercom import ( # noqa: ALN043
components/growth/internal/business_logic/crm/country/fr/is_request_likely_for_care.py:1 ⧉ from components.fr.internal.business_logic.company.queries.employment import ( # noqa: ALN043
components/growth/internal/business_logic/crm/country/fr/is_request_likely_for_care.py:4 ⧉ from components.fr.internal.business_logic.user.queries.user import ( # noqa: ALN043
components/growth/internal/business_logic/crm/country/fr/is_request_likely_for_care.py:7 ⧉ from components.fr.internal.offer.health.enums.plan import PlanSegment # noqa: ALN043
components/growth/internal/business_logic/crm/country/fr/salesforce_lead_builder.py:3 ⧉ from components.fr.internal.offer.health.enums.plan import PlanSegment # noqa: ALN043
components/growth/internal/business_logic/crm/country/fr/cold_lead_priority.py:6 ⧉ from components.fr.internal.offer.health.enums.plan import PlanSegment # noqa: ALN043
components/growth/internal/business_logic/crm/country/fr/quote_request.py:8 ⧉ from components.fr.internal.business_logic.contract.queries.health_contracts import ( # noqa: ALN043
components/growth/internal/business_logic/crm/country/fr/quote_request.py:11 ⧉ from components.fr.internal.business_logic.user.queries.user import ( # noqa: ALN043
components/growth/internal/business_logic/crm/country/fr/quote_request.py:18 ⧉ from components.fr.internal.resolution_platform.business_logic.actions.conversation_context import ( # noqa: ALN043
components/growth/internal/business_logic/crm/tests/test_user_has_signed_contract.py:5 ⧉ from components.fr.internal.tests.factories.contract import ( # noqa: ALN043
components/growth/internal/business_logic/crm/tests/test_user_has_signed_contract.py:9 ⧉ from components.fr.internal.tests.factories.user import UserFactory # noqa: ALN043
components/growth/internal/business_logic/crm/tests/test_cold_lead_priority.py:9 ⧉ from components.fr.internal.offer.health.enums.plan import PlanSegment # noqa: ALN043
components/growth/internal/business_logic/crm/tests/test_cold_lead_priority.py:10 ⧉ from components.fr.internal.tests.factories.care_conversation_backlog import ( # noqa: ALN043
components/growth/internal/business_logic/crm/tests/test_cold_lead_priority.py:13 ⧉ from components.fr.internal.tests.factories.care_conversation_context import ( # noqa: ALN043
components/growth/internal/business_logic/crm/tests/test_prospect_crm_on_proposal_creation.py:120 ⧉ from components.fr.internal.tests.factories.fr_alan_employee_factory import ( # noqa: ALN043
components/growth/internal/business_logic/crm/tests/test_prospect_crm_on_proposal_creation.py:123 ⧉ from components.fr.internal.tests.factories.user import UserFactory # noqa: ALN043
components/growth/internal/business_logic/crm/tests/test_fr_self_serve_intercom_client.py:6 ⧉ from components.fr.internal.tests.factories.user import UserFactory # noqa: ALN043
components/growth/internal/business_logic/crm/tests/test_attribution.py:20 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/set_proposal_step.py:4 ⧉ from components.contracting.subcomponents.proposal.api.main import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/proposal_presenter.py:4 ⧉ from components.contracting.subcomponents.proposal.api.entities.proposal_origin import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/validation_context.py:1 ⧉ from components.contracting.utils.validation import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/set_proposal_inactive.py:6 ⧉ from components.contracting.subcomponents.proposal.api.main import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/proposal.py:17 ⧉ from components.contracting.subcomponents.proposal.plugins.legacy_termination_fr.enums import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/proposal.py:20 ⧉ from components.contracting.subcomponents.proposal.plugins.spec import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/proposal.py:23 ⧉ from components.contracting.utils.population import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/proposal.py:26 ⧉ from components.contracting.utils.types import Target # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/event_on_proposal_approved.py:4 ⧉ from components.contracting.external.subscription.fr.queries import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/event_on_proposal_approved.py:14 ⧉ from components.contracting.subcomponents.proposal.api.entities.proposal_item import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/event_on_proposal_approved.py:17 ⧉ from components.contracting.subcomponents.proposal.api.main import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/event_on_proposal_approved.py:20 ⧉ from components.fr.internal.mail.company.onboarding.contract_signed import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/plan.py:1 ⧉ from components.contracting.utils.population import Population # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/plan.py:2 ⧉ from components.fr.internal.errors.error_code import ErrorCode # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/plan.py:9 ⧉ from components.fr.internal.offer.health.queries.plan import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/step_company_signup.py:10 ⧉ from components.contracting.external.contract import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/step_company_signup.py:14 ⧉ from components.contracting.external.subscription.api.entities.subscription_type import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/step_company_signup.py:27 ⧉ from components.contracting.subcomponents.proposal.api.main import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/step_company_signup.py:35 ⧉ from components.contracting.subcomponents.proposal.plugins.legacy_termination_fr.enums import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/step_company_signup.py:39 ⧉ from components.contracting.utils.population import Population # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/step_company_signup.py:40 ⧉ from components.contracting.utils.types import Target # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/step_company_signup.py:41 ⧉ from components.fr.internal.billing.business_logic.actions.iban import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/step_company_signup.py:44 ⧉ from components.fr.internal.business_logic.address.actions.address import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/step_company_signup.py:47 ⧉ from components.fr.internal.business_logic.ccn.queries.ccn import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/step_company_signup.py:50 ⧉ from components.fr.internal.business_logic.company.actions.company import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/step_company_signup.py:53 ⧉ from components.fr.internal.helpers.document_versioning import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/step_company_signup.py:66 ⧉ from components.fr.internal.services.tracking.company.events import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/proposal_checks.py:11 ⧉ from components.contracting.subcomponents.proposal.plugins.legacy_termination_fr.enums import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/proposal_checks.py:14 ⧉ from components.contracting.utils.types import Target # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/step_individual_signup.py:8 ⧉ from components.contracting.external.subscription.api.entities.subscription_type import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/step_individual_signup.py:21 ⧉ from components.contracting.subcomponents.proposal.api.main import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/step_individual_signup.py:27 ⧉ from components.contracting.subcomponents.proposal.plugins.legacy_termination_fr.enums import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/step_individual_signup.py:31 ⧉ from components.contracting.utils.population import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/step_individual_signup.py:34 ⧉ from components.contracting.utils.types import Target # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/step_individual_signup.py:35 ⧉ from components.fr.internal.business_logic.user.actions.user_iban import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/step_individual_signup.py:38 ⧉ from components.fr.internal.errors.error_code import ErrorCode # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/step_individual_signup.py:45 ⧉ from components.fr.internal.offer.health.enums.plan import PlanSegment # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/step_individual_signup.py:46 ⧉ from components.fr.internal.offer.health.queries.plan import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/step_individual_signup.py:49 ⧉ from components.fr.internal.services.tracking.company.events import ( # noqa: ALN043 # to fix
components/growth/internal/business_logic/self_serve_subscription/fr/presenters/self_served_presenter.py:17 ⧉ from components.contracting.subcomponents.proposal.plugins.legacy_termination_fr.enums import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/presenters/self_served_presenter.py:46 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/presenters/self_served_individual_proposal.py:13 ⧉ from components.contracting.subcomponents.proposal.plugins.spec import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/fr/presenters/self_served_individual_proposal.py:19 ⧉ from components.fr.internal.offer.health.enums.plan import PlanSegment # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/es/event_on_proposal_approved.py:11 ⧉ from components.contracting.subcomponents.proposal.api.entities.proposal_item import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/es/event_on_proposal_approved.py:14 ⧉ from components.contracting.subcomponents.proposal.api.main import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/es/step_company_signup.py:13 ⧉ from components.contracting.external.product.es.health_insurance import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/es/step_company_signup.py:29 ⧉ from components.contracting.utils.population import Population # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/es/step_company_signup.py:30 ⧉ from components.contracting.utils.types import Target # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/es/step_company_signup.py:31 ⧉ from components.es.internal.business_logic.account.account import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/es/step_company_signup.py:35 ⧉ from components.es.internal.business_logic.iban import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/es/proposal_checks.py:10 ⧉ from components.contracting.utils.types import Target # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_self_serve_subscription.py:13 ⧉ from components.contracting.subcomponents.proposal.api.main import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_self_serve_subscription.py:25 ⧉ from components.fr.internal.tests.factories.ccn import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_self_serve_subscription.py:28 ⧉ from components.fr.internal.tests.factories.cnp_id import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_self_serve_subscription.py:31 ⧉ from components.fr.internal.tests.factories.insurance_company import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_self_serve_subscription.py:34 ⧉ from components.fr.internal.tests.factories.plan import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_self_serve_subscription.py:37 ⧉ from components.fr.internal.tests.factories.prevoyance_plan import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_self_serve_subscription.py:40 ⧉ from components.fr.internal.tests.factories.user import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_self_serve_subscription.py:72 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_individual_self_serve.py:8 ⧉ from components.contracting.external.subscription.fr.queries import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_individual_self_serve.py:17 ⧉ from components.contracting.utils.errors import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_individual_self_serve.py:23 ⧉ from components.fr.internal.offer.health.enums.plan import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_individual_self_serve.py:27 ⧉ from components.fr.internal.tests.factories.employment import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_individual_self_serve.py:30 ⧉ from components.fr.internal.tests.factories.insurance_company import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_individual_self_serve.py:33 ⧉ from components.fr.internal.tests.factories.plan import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_individual_self_serve.py:36 ⧉ from components.fr.internal.tests.factories.policy import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_individual_self_serve.py:39 ⧉ from components.fr.internal.tests.factories.policy_ani_contract import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_individual_self_serve.py:42 ⧉ from components.fr.internal.tests.factories.price_grid import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_individual_self_serve.py:45 ⧉ from components.fr.internal.tests.factories.user import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/utils.py:25 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_proposal_checks.py:5 ⧉ from components.contracting.subcomponents.proposal.api.entities.subscriptor import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_proposal_checks.py:8 ⧉ from components.contracting.subcomponents.proposal.plugins.spec import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_proposal_checks.py:11 ⧉ from components.contracting.subcomponents.proposal.tests.factories.global_models import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_proposal_checks.py:16 ⧉ from components.fr.internal.tests.factories.plan import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_proposal_checks.py:26 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_set_proposal_inactive.py:3 ⧉ from components.contracting.subcomponents.proposal.api.entities.subscriptor import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_set_proposal_inactive.py:10 ⧉ from components.contracting.subcomponents.proposal.plugins.spec import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_set_proposal_inactive.py:13 ⧉ from components.contracting.subcomponents.proposal.tests.factories.global_models import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_set_proposal_inactive.py:18 ⧉ from components.fr.internal.tests.factories.company import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve_subscription/tests/test_set_proposal_inactive.py:21 ⧉ from components.fr.internal.tests.factories.plan import ( # noqa: ALN043
components/growth/internal/entities/company_signup_schema.py:11 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/entities/self_serve.py:14 ⧉ from components.contracting.subcomponents.proposal.api.entities.approval_request import ( # noqa: ALN043
components/growth/internal/entities/self_serve.py:20 ⧉ from components.contracting.subcomponents.proposal.plugins.legacy_termination_fr.enums import ( # noqa: ALN043
components/growth/internal/entities/self_serve.py:23 ⧉ from components.fr.internal.services.societeinfo import ( # noqa: ALN043
components/growth/internal/entities/self_serve.py:29 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/entities/nurturing.py:14 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/entities/nurturing.py:474 ⧉ from components.fr.internal.offer.health.enums.plan import ( # noqa: ALN043
components/growth/internal/entities/legacy_contract_schema.py:9 ⧉ from components.contracting.subcomponents.proposal.plugins.legacy_termination_fr.enums import ( # noqa: ALN043
components/growth/internal/tests/factories/individual_quote_request.py:3 ⧉ from components.fr.internal.offer.health.enums.plan import PlanSegment # noqa: ALN043
components/growth/internal/controllers/self_serve_progress.py:74 ⧉ from components.contracting.utils.errors import ( # noqa: ALN043
components/growth/internal/controllers/fr/self_serve_subscription.py:48 ⧉ from components.contracting.external.company import ( # noqa: ALN043
components/growth/internal/controllers/fr/self_serve_subscription.py:73 ⧉ from components.contracting.utils.errors import ( # noqa: ALN043
components/growth/internal/controllers/fr/self_serve_subscription.py:202 ⧉ from components.contracting.external.company import ( # noqa: ALN043
components/growth/internal/controllers/fr/prevoyance_offers.py:47 ⧉ from components.contracting.external.company import ( # noqa: ALN043
components/growth/internal/controllers/fr/prevoyance_offers.py:71 ⧉ from components.contracting.external.account import ( # noqa: ALN043
components/growth/internal/controllers/fr/accountant.py:8 ⧉ from components.fr.internal.controllers.company import ( # noqa: ALN043
components/growth/internal/controllers/fr/prospect_funnel.py:19 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/controllers/fr/self_serve_crm_marmot.py:17 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_email_capture_endpoints.py:9 ⧉ from components.fr.internal.tests.factories.ccn import CCNFactory # noqa: ALN043
components/growth/internal/controllers/tests/test_email_capture_endpoints.py:10 ⧉ from components.fr.internal.tests.factories.plan import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_email_capture_endpoints.py:13 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_funnel_smorest_migration.py:7 ⧉ from components.be.bootstrap.growth import BelgiumGrowthDependency # noqa: ALN043
components/growth/internal/controllers/tests/test_funnel_smorest_migration.py:8 ⧉ from components.be.internal.health_plan.actions.create_smc_plans import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_accountant_endpoints.py:5 ⧉ from components.fr.internal.business_logic.company.queries.admin import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_accountant_endpoints.py:8 ⧉ from components.fr.internal.tests.factories.company import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_accountant_endpoints.py:11 ⧉ from components.fr.internal.tests.factories.company_admin import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_self_serve.py:12 ⧉ from components.fr.internal.tests.factories.ccn import CCNFactory # noqa: ALN043
components/growth/internal/controllers/tests/test_self_serve.py:13 ⧉ from components.fr.internal.tests.factories.prevoyance_plan import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_self_serve.py:19 ⧉ from components.global_account.internal.tests.factories.builder_prospect import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_self_serve_crm_marmot.py:9 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_prepare_signature_smorest_migration.py:14 ⧉ from components.fr.internal.tests.factories.plan import PlanFullFactory # noqa: ALN043
components/growth/internal/controllers/tests/test_prepare_signature_smorest_migration.py:15 ⧉ from components.fr.internal.tests.factories.price_grid import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_prepare_signature_smorest_migration.py:18 ⧉ from components.fr.internal.tests.factories.user import UserFactory # noqa: ALN043
components/growth/internal/controllers/tests/test_individual_signup_migration.py:3 ⧉ from components.fr.internal.offer.health.enums.plan import PlanType # noqa: ALN043
components/growth/internal/controllers/tests/test_individual_signup_migration.py:4 ⧉ from components.fr.internal.tests.factories.plan import PlanFullFactory # noqa: ALN043
components/growth/internal/controllers/tests/test_individual_signup_migration.py:5 ⧉ from components.fr.internal.tests.factories.price_grid import ( # noqa: ALN043
components/growth/internal/controllers/tests/prospect_quote_request_mocks.py:1 ⧉ from components.fr.internal.tests.factories.plan import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_quote_request_endpoints.py:10 ⧉ from components.fr.internal.tests.factories.ccn import CCNFactory # noqa: ALN043
components/growth/internal/controllers/tests/test_quote_request_endpoints.py:11 ⧉ from components.fr.internal.tests.factories.plan import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_quote_request_endpoints.py:31 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_crm.py:5 ⧉ from components.fr.internal.salesforce.api import main as salesforce_api # noqa: ALN043
components/growth/internal/controllers/tests/test_crm.py:6 ⧉ from components.fr.internal.salesforce.internals.services.salesforce import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_referral.py:7 ⧉ from components.fr.internal.tests.factories.company import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_referral.py:10 ⧉ from components.fr.internal.tests.factories.company_admin import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_referral.py:13 ⧉ from components.fr.internal.tests.factories.contract import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_referral.py:16 ⧉ from components.fr.internal.tests.factories.user import UserFactory # noqa: ALN043
components/growth/internal/controllers/tests/test_prevoyance_offers_integration.py:5 ⧉ from components.fr.internal.tests.factories.account import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_prevoyance_offers_integration.py:8 ⧉ from components.fr.internal.tests.factories.company import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_prevoyance_offers_integration.py:11 ⧉ from components.fr.internal.tests.factories.company_admin import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_prospect_funnel_smorest_migration.py:12 ⧉ from components.fr.internal.offer.health.enums.plan import PlanSegment # noqa: ALN043
components/growth/internal/controllers/tests/test_prospect_funnel_smorest_migration.py:13 ⧉ from components.fr.internal.tests.factories.ccn import CCNFactory # noqa: ALN043
components/growth/internal/controllers/tests/test_prospect_funnel_smorest_migration.py:14 ⧉ from components.fr.internal.tests.factories.plan import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_prospect_funnel_smorest_migration.py:18 ⧉ from components.fr.internal.tests.factories.price_rule import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_prospect_funnel_smorest_migration.py:21 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043