Add time information for when submissions are evaluated
#1
by
lewtun
HF staff
- opened
{{cookiecutter.repo_name}}/cli.py
CHANGED
@@ -108,7 +108,7 @@ def submit(
|
|
108 |
idx = (today.weekday() + 1) % 7
|
109 |
sun = today + datetime.timedelta(7 - idx)
|
110 |
typer.echo("Submission successful! 🎉 🥳 🎉")
|
111 |
-
typer.echo(f"Your submission will be
|
112 |
|
113 |
|
114 |
if __name__ == "__main__":
|
|
|
108 |
idx = (today.weekday() + 1) % 7
|
109 |
sun = today + datetime.timedelta(7 - idx)
|
110 |
typer.echo("Submission successful! 🎉 🥳 🎉")
|
111 |
+
typer.echo(f"Your submission will be evaluated on {sun:%A %d %B %Y} at 12:00 UTC ⏳")
|
112 |
|
113 |
|
114 |
if __name__ == "__main__":
|