Skip to content

Commit

Permalink
Moves stations_file to correct folder
Browse files Browse the repository at this point in the history
  • Loading branch information
FL550 committed Oct 17, 2023
1 parent 9d82988 commit 6d1edb8
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion development/generate_stations.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,5 @@
)
stations[group_id] = station

with open("./stations.json", "w", encoding="utf-8") as f:
with open("simple_dwd_weatherforecast/stations.json", "w", encoding="utf-8") as f:
json.dump(stations, f, ensure_ascii=False)
1 change: 0 additions & 1 deletion development/stations.json

This file was deleted.

2 changes: 1 addition & 1 deletion simple_dwd_weatherforecast/stations.json

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion stations.json

This file was deleted.

2 changes: 1 addition & 1 deletion tests/test_stationsfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


class StationsFileTestCase(unittest.TestCase):
FILE_NAME = "stations.json"
FILE_NAME = "simple_dwd_weatherforecast/stations.json"

def setUp(self):
with open(self.FILE_NAME, encoding="utf-8", mode="r") as file:
Expand Down

0 comments on commit 6d1edb8

Please sign in to comment.