From 598a7cf41d94940aba2296be21267e40ebfe0705 Mon Sep 17 00:00:00 2001
From: magicfelix <felix@felix-zauberer.de>
Date: Mon, 24 Mar 2025 11:19:48 +0100
Subject: [PATCH] Adjust to RegistryObject classvar name change

---
 aleksis/apps/untis/data_checks.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/aleksis/apps/untis/data_checks.py b/aleksis/apps/untis/data_checks.py
index fc7b475..bff579c 100644
--- a/aleksis/apps/untis/data_checks.py
+++ b/aleksis/apps/untis/data_checks.py
@@ -12,7 +12,7 @@ class CourseGroupNotFoundAndCreated(DataCheck):
         "The Untis import created a new course group because no matching group has been found."
     )
 
-    solve_options = {IgnoreSolveOption.name: IgnoreSolveOption}
+    solve_options = {IgnoreSolveOption._class_name: IgnoreSolveOption}
 
     @classmethod
     def run_check_data(cls):
@@ -29,7 +29,7 @@ class CourseGroupNotFoundAndNotCreated(DataCheck):
         "for a lesson because no matching group has been found."
     )
 
-    solve_options = {IgnoreSolveOption.name: IgnoreSolveOption}
+    solve_options = {IgnoreSolveOption._class_name: IgnoreSolveOption}
 
     @classmethod
     def run_check_data(cls):
-- 
GitLab