removed whitespace

This commit is contained in:
2026-08-05 14:59:52 +09:00
parent 2c986b7393
commit bfe7a371ff
-2
View File
@@ -5,11 +5,9 @@ import yaml
import pipelines import pipelines
def main(config_yaml): def main(config_yaml):
with open(config_yaml, 'r') as f: with open(config_yaml, 'r') as f:
config = yaml.safe_load(f) config = yaml.safe_load(f)
job_types = { job_types = {
'random+sobo': pipelines.sobo_pipeline 'random+sobo': pipelines.sobo_pipeline
} }