more overhaul work

This commit is contained in:
Blake Ridgway 2025-04-01 10:26:11 -05:00
parent 34d7c4c9dd
commit 0bd7db4a9a
2 changed files with 2 additions and 1 deletions

View file

@ -281,7 +281,7 @@ class TimeLogix:
def export_to_csv(self):
try:
with open("time_entries.csv", "w", newline="") as csvfile:
with open("working_sessions.csv", "w", newline="") as csvfile:
fieldnames = ["task", "project", "start_time", "end_time", "duration"]
writer = csv.DictWriter(csvfile, fieldnames=fieldnames)
writer.writeheader()