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 ⧉", 217
ALN043: You can only import things from a Component public module, see: https://www.notion.so/alaninsurance/Modular-monolith-a9d84f1318d34115bbd08b3648e5a587 ⧉", 268
ALN021: Foreign keys must use models, not string. See this Notion page : https://www.notion.so/alaninsurance/Imports-5495c8713847434986ef03ad09158bf1 ⧉ 1
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 ⧉ 4
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", 5
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
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. 32
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 217 times

File:line Content
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/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:476 ⧉ from components.fr.internal.models.company import ( # noqa: ALN069
components/growth/internal/entities/self_serve.py:479 ⧉ from components.fr.internal.offer.health.models.plan import Plan # noqa: ALN069
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/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/prevoyance_upsell/fr/create_proposal_for_prevoyance_upsell.py:37 ⧉ from components.fr.internal.models.enums.prevoyance_contract_origin 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/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/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/nurturing/tests/test_entities.py:13 ⧉ from components.offer_builder.internal.models.factories.builder_coverage import ( # 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/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/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/dependencies/fr/fr_growth_dependency.py:4 ⧉ from components.fr.internal.models.alan_employee import AlanEmployee # noqa: ALN069
components/growth/internal/business_logic/dependencies/fr/fr_growth_dependency.py:5 ⧉ from components.fr.internal.models.user import User as FrUser # 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:139 ⧉ from components.fr.internal.models.ccn import CCN # 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: ALN043, ALN069
components/growth/internal/business_logic/data_retention/fr/actions/prospection_data.py:19 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN043, 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: ALN043, 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: ALN043, 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: ALN043, 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:48 ⧉ InsuranceProfile, # 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: ALN043, ALN069
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, 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: ALN043, 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:27 ⧉ ExemptionJustification, # 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:30 ⧉ InsuranceProfile, # 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/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/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_referred_contract.py:3 ⧉ from components.be.internal.models.health_contract import ( # 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/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/validate_admin_referral_contract.py:5 ⧉ from components.be.internal.models.health_contract 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_all_user_ids.py:5 ⧉ 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_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_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_user_settlement_info.py:5 ⧉ from components.be.internal.models.tests.factories 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_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_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_can_reward_user.py:6 ⧉ from components.be.internal.models.tests.factories 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/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/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/can_reward_user.py:3 ⧉ from components.es.internal.constants import ( # noqa: ALN043, 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/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/is_alaner.py:3 ⧉ from components.es.internal.models.es_user import EsUser # 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/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_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_get_user_settlement_info.py:6 ⧉ from components.es.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_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: ALN043, 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_can_reward_user.py:9 ⧉ from components.es.internal.models.tests.factories import ( # 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/get_referred_contract.py:1 ⧉ from components.fr.internal.models.contract import Contract # 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:1 ⧉ from components.fr.internal.billing.business_logic.queries.invoice import ( # noqa: ALN043, ALN069
components/growth/internal/business_logic/referral/country/fr/has_contract_paid_invoice.py:4 ⧉ from components.fr.internal.models.contract import Contract # noqa: ALN043, 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/get_user_settlement_info.py:1 ⧉ from components.fr.internal.models.user import User # 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/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/has_discount_for_referral.py:7 ⧉ from components.fr.internal.models.discount import Discount # noqa: ALN069
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, ALN069
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, ALN069
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, ALN069
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, 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, 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, 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:11 ⧉ from components.fr.internal.tests.factories.contract import ( # noqa: ALN043, ALN069
components/growth/internal/business_logic/referral/actions/tests/test_referral_actions.py:14 ⧉ from components.fr.internal.tests.factories.policy import ( # noqa: ALN043, 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, ALN043
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: ALN043, 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: ALN043, 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: ALN043, 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: ALN043, ALN069
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, ALN069
components/growth/internal/business_logic/referral/actions/tests/test_send_referral_rewards.py:10 ⧉ from components.fr.internal.tests.factories.contract import ( # noqa: ALN043, ALN069
components/growth/internal/business_logic/referral/actions/tests/test_send_referral_rewards.py:13 ⧉ from components.fr.internal.tests.factories.employment import ( # noqa: ALN043, ALN069
components/growth/internal/business_logic/referral/actions/tests/test_send_referral_rewards.py:16 ⧉ from components.fr.internal.tests.factories.user import ( # noqa: ALN043, 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, ALN043
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, ALN043
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:4 ⧉ from components.fr.internal.tests.factories.user import ( # noqa: ALN069, ALN043
components/growth/internal/business_logic/referral/tests/test_email_events.py:7 ⧉ from components.global_profile.internal.models.tests.factories import ( # noqa: ALN069, ALN043
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, ALN043
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, ALN043
components/growth/internal/business_logic/referral/queries/tests/test_referral_queries.py:4 ⧉ from components.global_profile.internal.models.tests.factories import ( # noqa: ALN069, ALN043
components/growth/internal/business_logic/crm/fr/intercom_message_templates.py:9 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/business_logic/crm/fr/quote_request.py:14 ⧉ from components.fr.internal.models.care_conversation_context import ( # noqa: ALN069
components/growth/internal/business_logic/crm/fr/quote_request.py:17 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/business_logic/crm/fr/quote_request.py:22 ⧉ from components.fr.internal.resolution_platform.models.care_conversation_backlog import ( # noqa: ALN069
components/growth/internal/business_logic/crm/fr/quote_request.py:25 ⧉ from components.fr.internal.resolution_platform.models.care_conversation_backlog_tag import ( # noqa: ALN069
components/growth/internal/business_logic/crm/fr/self_serve_intercom_client.py:8 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/business_logic/crm/fr/notify_contract_signature.py:1 ⧉ from components.fr.internal.models.company import Company # noqa: ALN069
components/growth/internal/business_logic/crm/fr/notify_contract_signature.py:2 ⧉ from components.fr.internal.models.user import User # 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/country/self_serve_country_router.py:41 ⧉ from components.fr.internal.models.company import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/country/self_serve_country_router.py:44 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/business_logic/self_serve/country/self_serve_country_router.py:294 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/business_logic/self_serve/country/self_serve_country_router.py:309 ⧉ from components.es.internal.models.es_user import EsUser # 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/self_serve_flow.py:388 ⧉ from components.es.internal.onboarding.signup import ( # noqa: ALN043, ALN069
components/growth/internal/business_logic/self_serve/es/actions/tests/test_self_serve_flow.py:162 ⧉ from components.es.internal.models.tests.factories import ( # noqa: ALN043, 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:29 ⧉ from components.fr.internal.models.user import User # 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/actions/tests/test_company_health.py:31 ⧉ from components.offer_builder.public.entities.factories.builder_coverage import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/actions/tests/test_company_health.py:34 ⧉ from components.offer_builder.public.entities.factories.builder_product import ( # 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/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/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/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_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/fr/queries/tests/test_company_prevoyance.py:6 ⧉ from components.fr.internal.models.enums.professional_category import ( # 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/tests/test_funnel_smorest_migration.py:13 ⧉ 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_self_serve.py:23 ⧉ from components.offer_builder.public.entities.factories.builder_coverage import ( # noqa: ALN069
components/growth/internal/controllers/tests/test_self_serve.py:26 ⧉ from components.offer_builder.public.entities.factories.builder_product import ( # noqa: ALN069
components/growth/internal/controllers/tests/test_self_serve.py:29 ⧉ from components.offer_builder.public.entities.factories.prices 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
components/growth/internal/controllers/tests/test_quote_request_endpoints.py:8 ⧉ TNS_SAPPHIRE_PRODUCT, # 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_email_capture_endpoints.py:7 ⧉ TNS_SAPPHIRE_PRODUCT, # noqa: ALN069
components/growth/internal/controllers/tests/test_referral.py:63 ⧉ from shared.helpers.db import current_session # noqa: ALN069
components/growth/internal/controllers/tests/test_referral.py:92 ⧉ from components.global_profile.public.mappers import GenderMapper # noqa: ALN069
components/growth/internal/controllers/tests/test_referral.py:231 ⧉ from shared.helpers.db import current_session # noqa: ALN069
components/growth/internal/controllers/tests/test_referral.py:406 ⧉ from components.growth.internal.entities.referral import ( # noqa: ALN069
components/growth/internal/controllers/tests/test_member.py:9 ⧉ from components.growth.internal.models.prospect import Prospect # noqa: ALN069
components/growth/internal/controllers/tests/test_member.py:10 ⧉ from shared.helpers.db import current_session # noqa: ALN069
components/growth/internal/controllers/tests/test_member.py:72 ⧉ from components.growth.internal.business_logic.crm import intercom # noqa: ALN069
components/growth/internal/controllers/tests/test_member.py:110 ⧉ from components.growth.internal.business_logic.crm import intercom # noqa: ALN069
components/growth/internal/controllers/fr/prevoyance_upsell.py:9 ⧉ from components.fr.internal.models.user import User # noqa: ALN069

ALN043 occurs 268 times

File:line Content
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/entities/nurturing.py:14 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/entities/nurturing.py:462 ⧉ from components.fr.internal.offer.health.enums.plan import ( # noqa: ALN043
components/growth/internal/entities/nurturing.py:463 ⧉ PlanSegment, # 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:24 ⧉ CompanyInfoResponse, # 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/self_serve.py:467 ⧉ from components.contracting.public.proposal import ( # noqa: ALN043
components/growth/internal/entities/self_serve.py:471 ⧉ from components.contracting.subcomponents.self_serve_subscription.internals.proposal_checks import ( # noqa: ALN043
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/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/prevoyance_upsell/tests/test_create_proposal_for_prevoyance_upsell.py:21 ⧉ from shared.helpers.time.utc import utctoday # 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/fr/create_proposal_for_prevoyance_upsell.py:34 ⧉ from components.contracting.subcomponents.self_serve_subscription.internals.plan import ( # noqa: ALN043
components/growth/internal/business_logic/prevoyance_upsell/fr/check_can_upsell_prevoyance.py:5 ⧉ from components.contracting.subcomponents.self_serve_subscription.internals.plan import ( # noqa: ALN043
components/growth/internal/business_logic/prevoyance_upsell/fr/check_can_upsell_prevoyance.py:8 ⧉ 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/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/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/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_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_prospect_quote_request_model.py:10 ⧉ PrevoyancePlanFactory, # 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:12 ⧉ PriceRuleFactory, # 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_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_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/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/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:13 ⧉ track_link, # 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:20 ⧉ get_plan_by_product_on, # 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:330 ⧉ PlanSegment, # 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/prospect_funnel_company.py:60 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/fr/prospect_funnel_company.py:61 ⧉ CoverageLevelEnum, # noqa: ALN043
components/growth/internal/business_logic/dependencies/fr/fr_growth_dependency.py:6 ⧉ from components.fr.internal.offer.health.enums.plan import PlanSegment # noqa: ALN043
components/growth/internal/business_logic/dependencies/fr/fr_growth_dependency.py:7 ⧉ from components.fr.internal.resolution_platform.business_logic.helpers.intercom_admin_id_mapping import ( # noqa: ALN043
components/growth/internal/business_logic/dependencies/fr/fr_growth_dependency.py:48 ⧉ from components.fr.internal.resolution_platform.business_logic.actions.conversation_context import ( # noqa: ALN043
components/growth/internal/business_logic/dependencies/fr/fr_growth_dependency.py:63 ⧉ from components.fr.internal.mail.app_mailers.unauthenticated_user import ( # noqa: ALN043
components/growth/internal/business_logic/dependencies/fr/fr_growth_dependency.py:82 ⧉ from components.fr.internal.business_logic.company.queries.employment import ( # noqa: ALN043
components/growth/internal/business_logic/dependencies/fr/fr_growth_dependency.py:85 ⧉ from components.fr.internal.business_logic.user.queries.user import ( # noqa: ALN043
components/growth/internal/business_logic/dependencies/fr/fr_growth_dependency.py:170 ⧉ from components.fr.internal.business_logic.user.queries.user import ( # noqa: ALN043
components/growth/internal/business_logic/dependencies/fr/fr_growth_dependency.py:195 ⧉ from components.fr.internal.resolution_platform.business_logic.helpers.intercom_admin_id_mapping import ( # 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/queries.py:130 ⧉ from components.fr.internal.business_logic.company.queries.company import ( # noqa: ALN043
components/growth/internal/business_logic/prospect/fr/queries.py:133 ⧉ from components.fr.internal.business_logic.company.queries.contract import ( # noqa: ALN043
components/growth/internal/business_logic/prospect/fr/queries.py:136 ⧉ from components.fr.internal.business_logic.user.queries.user import ( # noqa: ALN043
components/growth/internal/business_logic/prospect/fr/queries.py:140 ⧉ from components.fr.internal.salesforce.api.main 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/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:16 ⧉ from components.contracting.subcomponents.proposal.internals.models.approval_request import ( # noqa: ALN043, ALN069
components/growth/internal/business_logic/data_retention/fr/actions/prospection_data.py:19 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN043, 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: ALN043, 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: ALN043, 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: ALN043, ALN069
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:7 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN043, ALN069
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, 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: ALN043, ALN069
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:34 ⧉ EmploymentFactory, # 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:37 ⧉ ExemptionFactory, # 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:51 ⧉ RefreshTokenFactory, # 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/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, ALN069
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_get_discounts_pending_reimbursement.py:10 ⧉ from components.global_profile.internal.models.tests.factories import ( # noqa: ALN043, ALN069
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/country/fr/has_contract_paid_invoice.py:1 ⧉ from components.fr.internal.billing.business_logic.queries.invoice import ( # noqa: ALN043, ALN069
components/growth/internal/business_logic/referral/country/fr/has_contract_paid_invoice.py:4 ⧉ from components.fr.internal.models.contract import Contract # noqa: ALN043, ALN069
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, ALN069
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, ALN069
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, ALN069
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, 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, 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, ALN069
components/growth/internal/business_logic/referral/actions/tests/test_referral_actions.py:11 ⧉ from components.fr.internal.tests.factories.contract import ( # noqa: ALN043, ALN069
components/growth/internal/business_logic/referral/actions/tests/test_referral_actions.py:14 ⧉ from components.fr.internal.tests.factories.policy import ( # noqa: ALN043, 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, ALN043
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: ALN043, 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: ALN043, 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: ALN043, 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: ALN043, ALN069
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, ALN069
components/growth/internal/business_logic/referral/actions/tests/test_send_referral_rewards.py:10 ⧉ from components.fr.internal.tests.factories.contract import ( # noqa: ALN043, ALN069
components/growth/internal/business_logic/referral/actions/tests/test_send_referral_rewards.py:13 ⧉ from components.fr.internal.tests.factories.employment import ( # noqa: ALN043, ALN069
components/growth/internal/business_logic/referral/actions/tests/test_send_referral_rewards.py:16 ⧉ from components.fr.internal.tests.factories.user import ( # noqa: ALN043, 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, ALN043
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, ALN043
components/growth/internal/business_logic/referral/tests/test_email_events.py:4 ⧉ from components.fr.internal.tests.factories.user import ( # noqa: ALN069, ALN043
components/growth/internal/business_logic/referral/tests/test_email_events.py:7 ⧉ from components.global_profile.internal.models.tests.factories import ( # noqa: ALN069, ALN043
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, ALN043
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, 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/queries/tests/test_referral_queries.py:4 ⧉ from components.global_profile.internal.models.tests.factories import ( # noqa: ALN069, 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:7 ⧉ CompanyFactory, # 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:10 ⧉ CompanyAdminFactory, # 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/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:8 ⧉ 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/fr/get_accounting_firm.py:5 ⧉ from components.fr.internal.salesforce.api.main import ( # noqa: ALN043
components/growth/internal/business_logic/crm/tests/test_attribution.py:18 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # 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_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_fr_self_serve_intercom_client.py:6 ⧉ from components.fr.internal.tests.factories.user import UserFactory # noqa: ALN043
components/growth/internal/business_logic/crm/fr/push_sales_contact.py:4 ⧉ from components.fr.internal.salesforce.api.main import ( # noqa: ALN043
components/growth/internal/business_logic/crm/fr/quote_request.py:8 ⧉ from components.fr.internal.business_logic.contract.queries.health_contracts import ( # noqa: ALN043
components/growth/internal/business_logic/crm/fr/quote_request.py:11 ⧉ from components.fr.internal.business_logic.user.queries.user import ( # noqa: ALN043
components/growth/internal/business_logic/crm/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/fr/attribution.py:19 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/crm/fr/cold_lead_priority.py:6 ⧉ from components.fr.internal.offer.health.enums.plan import PlanSegment # 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/country/self_serve_country_router.py:37 ⧉ from components.contracting.subcomponents.self_serve_subscription.internals.proposal_checks 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/self_serve/es/actions/self_serve_flow.py:388 ⧉ from components.es.internal.onboarding.signup import ( # noqa: ALN043, ALN069
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/tests/test_self_serve_flow.py:162 ⧉ from components.es.internal.models.tests.factories import ( # noqa: ALN043, ALN069
components/growth/internal/business_logic/self_serve/es/entities/self_serve_flow_progress_presenter.py:90 ⧉ from components.contracting.subcomponents.self_serve_subscription.internals.es.proposal_checks 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:14 ⧉ from components.offer_builder.public.enums.builder_product_origin 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:50 ⧉ from components.global_account.internal.actions.builder_prospect import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/company_health.py:200 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/company_health.py:332 ⧉ from components.offer_builder.shared.enums.price_structure_type import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/company_health.py:335 ⧉ from components.offer_builder.subcomponents.pricer_v1.protected.entities.price_structure import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/self_serve_flow.py:14 ⧉ from components.contracting.subcomponents.self_serve_subscription.entities.company_signup_schema import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/self_serve_flow.py:23 ⧉ from components.contracting.subcomponents.self_serve_subscription.entities.proposal_legal_representative import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/self_serve_flow.py:26 ⧉ from components.contracting.subcomponents.self_serve_subscription.internals.step_prepare_signature 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:11 ⧉ AccountFactory, # 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/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/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/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/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_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_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/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_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:13 ⧉ AccountFactory, # 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:16 ⧉ AccountSettingFactory, # 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_prevoyance.py:30 ⧉ PrevoyancePlanFactory, # noqa: ALN043
components/growth/internal/controllers/self_serve_progress.py:14 ⧉ from components.contracting.subcomponents.self_serve_subscription.entities.proposal_legal_representative import ( # noqa: ALN043
components/growth/internal/controllers/self_serve_progress.py:74 ⧉ from components.contracting.utils.errors import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_funnel_smorest_migration.py:9 ⧉ from components.be.bootstrap.growth import BelgiumGrowthDependency # noqa: ALN043
components/growth/internal/controllers/tests/test_funnel_smorest_migration.py:10 ⧉ from components.be.internal.health_plan.actions.create_smc_plans 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_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_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:11 ⧉ IndividualPlanFullFactory, # 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_email_capture_endpoints.py:14 ⧉ CoverageLevelEnum, # 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_self_serve_crm_marmot.py:10 ⧉ CoverageLevelEnum, # 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/prospect_quote_request_mocks.py:1 ⧉ from components.fr.internal.tests.factories.plan import ( # noqa: ALN043
components/growth/internal/controllers/tests/prospect_quote_request_mocks.py:2 ⧉ PlanWithTwoOptionsFactory, # 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
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/fr/prospect_funnel.py:17 ⧉ 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/fr/accountant.py:8 ⧉ from components.fr.internal.controllers.company import CompanyController # noqa: ALN043