diff --git a/run.py b/run.py
index b23ff2eda3ab2c2cc0a2fceddf110fd16778bc54..dbd56d93c08fe51c1e1754fa65d3874ce151ffd4 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():