From 71e4840c353d85a8c4321415a83b08097707fab2 Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Tue, 6 Aug 2024 15:13:05 +0200 Subject: [PATCH] Add misspelled circle to migration --- server/vbv_lernwelt/learnpath/creators.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/server/vbv_lernwelt/learnpath/creators.py b/server/vbv_lernwelt/learnpath/creators.py index 995f4c03..700b7435 100644 --- a/server/vbv_lernwelt/learnpath/creators.py +++ b/server/vbv_lernwelt/learnpath/creators.py @@ -88,6 +88,9 @@ def assign_de_circles_to_profiles(): assign_circle_to_profile("Reisen", COURSE_PROFILE_NICHTLEBEN_CODE) assign_circle_to_profile("Wohneigentum", COURSE_PROFILE_NICHTLEBEN_CODE) assign_circle_to_profile("Selbständigkeit", COURSE_PROFILE_NICHTLEBEN_CODE) + assign_circle_to_profile( + "Selbstständigkeit", COURSE_PROFILE_LEBEN_CODE + ) # typo, but that's how it is in prod data assign_circle_to_profile("KMU", COURSE_PROFILE_NICHTLEBEN_CODE) assign_circle_to_profile("Einkommenssicherung", COURSE_PROFILE_LEBEN_CODE) @@ -95,6 +98,9 @@ def assign_de_circles_to_profiles(): assign_circle_to_profile("Erben/Vererben", COURSE_PROFILE_LEBEN_CODE) assign_circle_to_profile("Sparen", COURSE_PROFILE_LEBEN_CODE) assign_circle_to_profile("Selbständigkeit", COURSE_PROFILE_LEBEN_CODE) + assign_circle_to_profile( + "Selbstständigkeit", COURSE_PROFILE_LEBEN_CODE + ) # typo, but that's how it is in prod data assign_circle_to_profile("KMU", COURSE_PROFILE_LEBEN_CODE) assign_circle_to_profile("Gesundheit", COURSE_PROFILE_KRANKENZUSATZ_CODE)