summaryrefslogtreecommitdiff
path: root/cached
diff options
context:
space:
mode:
Diffstat (limited to 'cached')
-rw-r--r--cached/weather_data.py2
-rw-r--r--cached/weather_forecast.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/cached/weather_data.py b/cached/weather_data.py
index 89c330a..d2bf787 100644
--- a/cached/weather_data.py
+++ b/cached/weather_data.py
@@ -23,7 +23,7 @@ cfg = config.add_commandline_args(
cfg.add_argument(
'--weather_data_cachefile',
type=str,
- default=f'{os.environ["HOME"]}/.weather_summary_cache',
+ default=f'{os.environ["HOME"]}/cache/.weather_summary_cache',
metavar='FILENAME',
help='File in which to cache weather data'
)
diff --git a/cached/weather_forecast.py b/cached/weather_forecast.py
index a413d9f..2509f43 100644
--- a/cached/weather_forecast.py
+++ b/cached/weather_forecast.py
@@ -27,7 +27,7 @@ cfg = config.add_commandline_args(
cfg.add_argument(
'--weather_forecast_cachefile',
type=str,
- default=f'{os.environ["HOME"]}/.weather_forecast_cache',
+ default=f'{os.environ["HOME"]}/cache/.weather_forecast_cache',
metavar='FILENAME',
help='File in which to cache weather data'
)