Tools: fix error running weekly_report.py without a date set

Oversight in !141281.
This commit is contained in:
Campbell Barton
2025-07-05 08:40:34 +10:00
parent 7580da6bd2
commit 96111e9cc9

View File

@@ -99,7 +99,7 @@ def argparse_create() -> argparse.ArgumentParser:
"--date",
dest="date",
type=str_as_isodate,
default="",
default=None,
help="Show only for this day (YYYY-MM-DD), and not for an entire week."
)