Remove old .gitignore
This commit is contained in:
parent
8d2dc24739
commit
1e50de00a2
7
.gitignore
vendored
7
.gitignore
vendored
|
@ -1,7 +0,0 @@
|
||||||
|
|
||||||
# Program state
|
|
||||||
config.py
|
|
||||||
calendar.sqlite
|
|
||||||
|
|
||||||
# Python
|
|
||||||
__pycache__/
|
|
7
kobo_wall_calendar/config.py
Normal file
7
kobo_wall_calendar/config.py
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
from secret_loader import SecretLoader
|
||||||
|
|
||||||
|
SECRETS = SecretLoader()
|
||||||
|
|
||||||
|
def get_ical_links() -> list[str]:
|
||||||
|
secrets = SECRETS.load_or_fail('ical_links').strip().split('\n')
|
||||||
|
return [s.strip() for s in secrets]
|
Loading…
Reference in New Issue
Block a user