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 ⧉", 102
ALN043: You can only import things from a Component public module, see: https://www.notion.so/alaninsurance/Modular-monolith-a9d84f1318d34115bbd08b3648e5a587 ⧉", 198
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
ALN036: URL or URI parameters can lead to Server Side Request Forgery (SSRF) attacks. Attackers could get the server to make requests to an unintended location, which could lead to unauthorized actions or access to data within the network. https://cheatsheetseries.owasp.org/cheatsheets/Server_Side_Request_Forgery_Prevention_Cheat_Sheet.html ⧉ 2
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 ⧉ 3
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
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. 35

Listing of files of the most critical ALN**

ALN069 occurs 102 times

File:line Content
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/can_reward_user.py:1 ⧉ 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/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:743 ⧉ 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.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/crm/fr/intercom_message_templates.py:9 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/business_logic/crm/fr/push_sales_contact.py:3 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/business_logic/crm/fr/quote_request.py:9 ⧉ from components.fr.internal.models.user import User # 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/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:152 ⧉ from components.fr.internal.models.ccn import CCN # noqa: ALN069
components/growth/internal/business_logic/accountant/tests/test_add_accountants_as_admins.py:3 ⧉ from components.fr.internal.models.company_admin import ( # 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/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/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/company_health.py:4 ⧉ from components.fr.internal.models.enums.professional_category 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/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:29 ⧉ 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:35 ⧉ 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:38 ⧉ from components.offer_builder.public.entities.factories.builder_product 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_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 SIRET_LENGTH, 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/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.enums.professional_category import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/company_prevoyance.py:130 ⧉ from components.fr.internal.models.account import Account # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/company_prevoyance.py:131 ⧉ from components.fr.internal.models.contract import Contract # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/company_prevoyance.py:132 ⧉ from components.fr.internal.models.prevoyance_contract import ( # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/company_prevoyance.py:229 ⧉ from components.fr.internal.models.account import Account # noqa: ALN069
components/growth/internal/business_logic/self_serve/fr/queries/company_prevoyance.py:230 ⧉ from components.fr.internal.models.prevoyance_contract 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/fr/queries/tests/test_company_prevoyance.py:3 ⧉ from components.fr.internal.models.enums.professional_category import ( # noqa: ALN069
components/growth/internal/business_logic/nurturing/customerio_individual_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/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:5 ⧉ from components.fr.internal.models.enums.professional_category import ( # noqa: ALN069
components/growth/internal/business_logic/nurturing/fr/prospect_funnel_company.py:8 ⧉ 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:9 ⧉ from components.fr.internal.models.ccn import CCN # noqa: ALN069
components/growth/internal/business_logic/nurturing/fr/customerio_company_funnel_event.py:10 ⧉ 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/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:224 ⧉ from components.fr.internal.offer.prevoyance.models.prevoyance_plan import ( # noqa: ALN069
components/growth/internal/entities/self_serve.py:475 ⧉ from components.fr.internal.models.company import ( # noqa: ALN069
components/growth/internal/entities/self_serve.py:478 ⧉ from components.fr.internal.offer.health.models.plan import Plan # noqa: ALN069
components/growth/internal/controllers/self_serve_progress.py:7 ⧉ from components.contracting.subcomponents.proposal.internals.models.proposal import ( # noqa: ALN069
components/growth/internal/controllers/self_serve_progress.py:65 ⧉ from components.fr.internal.models.company import Company # noqa: ALN069
components/growth/internal/controllers/self_serve_progress.py:66 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/controllers/self_serve_progress.py:349 ⧉ from components.fr.internal.models.user import User # noqa: ALN069
components/growth/internal/controllers/referral.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_email_capture_endpoints.py:7 ⧉ TNS_SAPPHIRE_PRODUCT, # 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/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

ALN043 occurs 198 times

File:line Content
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.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/crm/tests/test_attribution.py:16 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # 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:6 ⧉ from components.fr.internal.business_logic.user.queries.user import ( # noqa: ALN043
components/growth/internal/business_logic/crm/fr/quote_request.py:10 ⧉ from components.fr.internal.offer.health.enums.plan import PlanSegment # noqa: ALN043
components/growth/internal/business_logic/crm/fr/quote_request.py:11 ⧉ 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/prospect/fr/register_prospect_with_qualification.py:5 ⧉ from components.fr.internal.offer.health.enums.plan import PlanSegment # noqa: ALN043
components/growth/internal/business_logic/prospect/fr/register_prospect_with_qualification.py:6 ⧉ from components.fr.internal.resolution_platform.business_logic.queries.conversation_context 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:143 ⧉ from components.fr.internal.business_logic.company.queries.company import ( # noqa: ALN043
components/growth/internal/business_logic/prospect/fr/queries.py:146 ⧉ from components.fr.internal.business_logic.company.queries.contract import ( # noqa: ALN043
components/growth/internal/business_logic/prospect/fr/queries.py:149 ⧉ from components.fr.internal.business_logic.user.queries.user import ( # noqa: ALN043
components/growth/internal/business_logic/prospect/fr/queries.py:153 ⧉ from components.fr.internal.salesforce.api.main 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/get_accountants_for_accounting_firm.py:8 ⧉ from components.fr.internal.salesforce.api.main 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_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/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/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/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/company_health.py:7 ⧉ from components.fr.internal.queuing.config import PRICING_QUEUE # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/company_health.py:13 ⧉ 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:16 ⧉ from components.offer_builder.public.enums.builder_product_origin import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/company_health.py:20 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/company_health.py:53 ⧉ from components.global_account.internal.actions.builder_prospect import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/company_health.py:342 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/company_health.py:473 ⧉ from components.offer_builder.shared.enums.price_structure_type import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/actions/company_health.py:476 ⧉ 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: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:44 ⧉ 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:47 ⧉ 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_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/company_prevoyance.py:69 ⧉ from components.fr.internal.business_logic.ccn.queries.ccn_prevoyance import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/company_prevoyance.py:111 ⧉ from components.fr.internal.business_logic.ccn.queries.ccn import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/company_prevoyance.py:259 ⧉ from components.fr.internal.product_settings.entities.account_feature import ( # noqa: ALN043
components/growth/internal/business_logic/self_serve/fr/queries/company_prevoyance.py:262 ⧉ from components.fr.internal.product_settings.queries.account_setting 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_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_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:6 ⧉ 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:9 ⧉ from components.fr.internal.product_settings.entities.account_feature 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/business_logic/nurturing/prospect_funnel_individual.py:5 ⧉ from components.fr.internal.offer.health.enums.plan import PlanSegment # noqa: ALN043
components/growth/internal/business_logic/nurturing/prospect_funnel_individual.py:6 ⧉ from components.fr.internal.offer.health.queries.plan import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/customerio_individual_funnel_event.py:4 ⧉ from components.fr.internal.business_logic.referral.queries.get_referral_conditions 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_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_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_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.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_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/fr/quote_request.py:5 ⧉ from components.fr.internal.offer.health.enums.plan import PlanSegment # 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:52 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/business_logic/nurturing/fr/prospect_funnel_company.py:53 ⧉ CoverageLevelEnum, # 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/customerio_company_funnel_event.py:6 ⧉ from components.fr.internal.business_logic.referral.queries.get_referral_conditions 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/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:479 ⧉ from components.fr.internal.offer.health.enums.plan import ( # noqa: ALN043
components/growth/internal/entities/nurturing.py:480 ⧉ 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:466 ⧉ from components.contracting.public.proposal import ( # noqa: ALN043
components/growth/internal/entities/self_serve.py:470 ⧉ from components.contracting.subcomponents.self_serve_subscription.internals.proposal_checks import ( # noqa: ALN043
components/growth/internal/controllers/self_serve_progress.py:10 ⧉ from components.contracting.subcomponents.self_serve_subscription.entities.proposal_legal_representative import ( # noqa: ALN043
components/growth/internal/controllers/self_serve_progress.py:55 ⧉ from components.contracting.subcomponents.self_serve_subscription.internals.proposal_checks import ( # noqa: ALN043
components/growth/internal/controllers/self_serve_progress.py:103 ⧉ from components.contracting.utils.errors import ( # noqa: ALN043
components/growth/internal/controllers/referral.py:5 ⧉ from components.fr.internal.business_logic.referral.entities.suggested_referral_params import ( # noqa: ALN043
components/growth/internal/controllers/referral.py:41 ⧉ from components.fr.internal.business_logic.referral.queries.get_referral_conditions import ( # noqa: ALN043
components/growth/internal/controllers/referral.py:141 ⧉ from components.fr.internal.business_logic.referral.actions.create_suggested_referral import ( # noqa: ALN043
components/growth/internal/controllers/referral.py:183 ⧉ from components.fr.internal.business_logic.referral.queries.referral_v2_progress import ( # noqa: ALN043
components/growth/internal/controllers/referral.py:210 ⧉ from components.fr.internal.business_logic.referral.actions.create_referral import ( # noqa: ALN043
components/growth/internal/controllers/referral.py:235 ⧉ from components.fr.internal.business_logic.referral.queries.marmot_referral_info 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/prospect_quote_request_mocks.py:2 ⧉ PlanWithTwoOptionsFactory, # 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_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_referral.py:5 ⧉ from components.fr.internal.tests.factories.company import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_referral.py:8 ⧉ from components.fr.internal.tests.factories.company_admin import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_referral.py:11 ⧉ from components.fr.internal.tests.factories.contract import ( # noqa: ALN043
components/growth/internal/controllers/tests/test_referral.py:14 ⧉ from components.fr.internal.tests.factories.user import UserFactory # noqa: ALN043
components/growth/internal/controllers/fr/accountant.py:5 ⧉ from components.fr.internal.controllers.company import CompanyController # noqa: ALN043
components/growth/internal/controllers/fr/prospect_funnel.py:13 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043
components/growth/internal/controllers/fr/self_serve_crm_marmot.py:13 ⧉ from components.offer_builder.shared.enums.coverage_level import ( # noqa: ALN043