summaryrefslogtreecommitdiff
path: root/cached/weather_data.py
diff options
context:
space:
mode:
Diffstat (limited to 'cached/weather_data.py')
-rw-r--r--cached/weather_data.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cached/weather_data.py b/cached/weather_data.py
index 4c46448..78f7ade 100644
--- a/cached/weather_data.py
+++ b/cached/weather_data.py
@@ -3,6 +3,7 @@
from dataclasses import dataclass
import datetime
import json
+import os
from typing import List
import urllib.request
@@ -19,7 +20,7 @@ cfg = config.add_commandline_args(
cfg.add_argument(
'--weather_data_cachefile',
type=str,
- default='/home/scott/.weather_summary_cache',
+ default=f'{os.environ["HOME"]}/.weather_summary_cache',
metavar='FILENAME',
help='File in which to cache weather data'
)