Remove old .gitignore

This commit is contained in:
Jon Michael Aanes 2024-07-17 16:12:38 +02:00
parent 8d2dc24739
commit 1e50de00a2
2 changed files with 7 additions and 7 deletions

7
.gitignore vendored
View File

@ -1,7 +0,0 @@
# Program state
config.py
calendar.sqlite
# Python
__pycache__/

View 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]