Update check_config.py
Browse files- check_config.py +1 -1
check_config.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import yaml
|
2 |
import sys
|
3 |
|
4 |
-
def
|
5 |
with open(config_file) as f:
|
6 |
config = yaml.safe_load(f)
|
7 |
|
|
|
1 |
import yaml
|
2 |
import sys
|
3 |
|
4 |
+
def check_config_file(task,config_file):
|
5 |
with open(config_file) as f:
|
6 |
config = yaml.safe_load(f)
|
7 |
|