feat: strip file after reading

This commit is contained in:
2025-12-01 23:04:17 +01:00
parent 000000307f
commit 000000408f

View File

@@ -54,7 +54,7 @@ def get(
path.parent.mkdir(parents=True, exist_ok=True) path.parent.mkdir(parents=True, exist_ok=True)
with open(path) as f: with open(path) as f:
return f.read() return f.read().strip()
def get_or_download( def get_or_download(