Skip to content
Snippets Groups Projects
Verified Commit 3e4c0f97 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Don't run delete logic on manual created data checks

parent 2f4d6f55
No related branches found
No related tags found
No related merge requests found
...@@ -14,6 +14,10 @@ class CourseGroupNotFoundAndCreated(DataCheck): ...@@ -14,6 +14,10 @@ class CourseGroupNotFoundAndCreated(DataCheck):
solve_options = {IgnoreSolveOption.name: IgnoreSolveOption} solve_options = {IgnoreSolveOption.name: IgnoreSolveOption}
@classmethod
def run_check_data(cls):
pass
class CourseGroupNotFoundAndNotCreated(DataCheck): class CourseGroupNotFoundAndNotCreated(DataCheck):
name = "untis_not_created_not_primary_source" name = "untis_not_created_not_primary_source"
...@@ -26,3 +30,7 @@ class CourseGroupNotFoundAndNotCreated(DataCheck): ...@@ -26,3 +30,7 @@ class CourseGroupNotFoundAndNotCreated(DataCheck):
) )
solve_options = {IgnoreSolveOption.name: IgnoreSolveOption} solve_options = {IgnoreSolveOption.name: IgnoreSolveOption}
@classmethod
def run_check_data(cls):
pass
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment