From 8c86ec28ab37ec613ac25be4d55fe6d1c90a99b9 Mon Sep 17 00:00:00 2001
From: Felix Kleinert <f.kleinert@fz-juelich.de>
Date: Thu, 12 Mar 2020 07:00:15 +0100
Subject: [PATCH] update runscript

---
 run.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/run.py b/run.py
index b23ff2ed..dbd56d93 100644
--- a/run.py
+++ b/run.py
@@ -16,14 +16,14 @@ from src.run_modules.training import Training
 
 def main(parser_args):
     try:
-        filename = 'German_background_stations.json_'
+        filename = 'German_background_stations.json'
         with open(filename, 'r') as jfile:
             stations = json.load(jfile)
             logging.info(f"load station IDs from file: {filename}")
             # stations.remove('DEUB042')
     except:
         stations = ['DEBW107', 'DEBY081', 'DEBW013', 'DEBW076', 'DEBW087', 'DEBW001']
-        stations =  ['DEBB050', 'DEBW107', 'DEBY081', 'DEBW013', 'DEBW076', 'DEBW087', 'DEBW001']
+        stations = ['DEBB050', 'DEBW107', 'DEBY081', 'DEBW013', 'DEBW076', 'DEBW087', 'DEBW001']
         logging.info(f"Can't open json file of stations: {stations}")
 
     with RunEnvironment():
-- 
GitLab