Skip to content
Snippets Groups Projects

Resolve "Adjust to RegistryObject classvar name change"

Merged magicfelix requested to merge 76-adjust-to-registryobject-classvar-name-change into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -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):
Loading