Skip to content
This repository was archived by the owner on Jan 22, 2021. It is now read-only.

Commit 4600ed6

Browse files
committed
hardcoding paths go brrrr
1 parent bf65a58 commit 4600ed6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

push.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from pathlib import Path
1212
from fire import exceptions
1313

14-
with open("/home/geek/.local/lib/python3.7/site-packages/fire/config.json", 'r') as cfg:
14+
with open("config.json", 'r') as cfg:
1515
config = json.load(cfg)
1616

1717
async def pushover(msg: str, url: str = "https://api.gaminggeek.club/", url_title: str = 'Click here!'):

slack.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from pathlib import Path
1313
from fire import exceptions
1414

15-
with open("/home/geek/.local/lib/python3.7/site-packages/fire/config.json", 'r') as cfg:
15+
with open("config.json", 'r') as cfg:
1616
config = json.load(cfg)
1717

1818
SIGNING_SECRET = config['signing_secret']

0 commit comments

Comments
 (0)