This commit is contained in:
Maw-Fox 2022-11-11 18:17:29 -07:00
parent 6c2d5d8066
commit d1eb3ace3f
1 changed files with 1 additions and 2 deletions

View File

@ -159,8 +159,7 @@ class Validation():
def __init__(self, is_skipped: bool, is_extended: bool) -> None:
if is_skipped:
self.validate = self.__no_op
print("Validation: Skipped")
return
return print("Validation: Skipped")
if is_extended:
self.validate = self.__extended_validate