fixed dataset aggregation; typo; and a bad empty string check

This commit is contained in:
Ari Brown 2024-01-26 11:48:35 -05:00
parent a907be22cc
commit 819bf7abf3
2 changed files with 7 additions and 4 deletions

View file

@ -10,6 +10,9 @@ with open(file, 'r') as f:
txt = f.read()
for line in txt.split("\n"):
if not line.strip():
continue
print(line)
athena.cancel(line)