We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f987a4d commit 7951938Copy full SHA for 7951938
synthpop/synthpop_utils/synthpop_control.py
@@ -132,7 +132,7 @@ def __init__(
132
self.log_settings()
133
134
# check if Settings are ok
135
- if not self.validate_manditory_input():
+ if not self.validate_mandatory_input():
136
msg = "Settings Validation failed!." \
137
" Please ensure that all mandatory parameters are set."
138
logger.critical(msg)
@@ -182,7 +182,7 @@ def __init__(
182
if isinstance(self.output_file_type, str):
183
self.output_file_type = [self.output_file_type, {}]
184
185
- def validate_manditory_input(self):
+ def validate_mandatory_input(self):
186
""" checks if all Mandatory files are provided"""
187
out = True
188
for key in self._categories["MANDATORY"]:
0 commit comments