From 2e3a3fe63c0ef1adcac636f663f475400c366360 Mon Sep 17 00:00:00 2001 From: lkugler <lukas.kugler@gmail.com> Date: Wed, 22 Feb 2023 10:51:52 +0100 Subject: [PATCH] . --- dartwrf/workflows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dartwrf/workflows.py b/dartwrf/workflows.py index cfb3673..9a09b02 100644 --- a/dartwrf/workflows.py +++ b/dartwrf/workflows.py @@ -17,7 +17,7 @@ from config.cfg import exp def dict_to_py(d, outfile): with open(outfile, 'w') as f: - txt = '# this file is autogenerated \n obs_kind_nrs = {' + txt = '# this file is autogenerated \nobs_kind_nrs = {' for k,v in d.items(): txt += '"'+k+'": '+str(v)+', \n' txt += '}' -- GitLab