Skip to content

Commit 7951938

Browse files
authored
Update synthpop_control.py
1 parent f987a4d commit 7951938

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

synthpop/synthpop_utils/synthpop_control.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def __init__(
132132
self.log_settings()
133133

134134
# check if Settings are ok
135-
if not self.validate_manditory_input():
135+
if not self.validate_mandatory_input():
136136
msg = "Settings Validation failed!." \
137137
" Please ensure that all mandatory parameters are set."
138138
logger.critical(msg)
@@ -182,7 +182,7 @@ def __init__(
182182
if isinstance(self.output_file_type, str):
183183
self.output_file_type = [self.output_file_type, {}]
184184

185-
def validate_manditory_input(self):
185+
def validate_mandatory_input(self):
186186
""" checks if all Mandatory files are provided"""
187187
out = True
188188
for key in self._categories["MANDATORY"]:

0 commit comments

Comments
 (0)