Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"half two" instead of "half past two" #3

Open
webdeck opened this issue Oct 12, 2024 · 0 comments
Open

"half two" instead of "half past two" #3

webdeck opened this issue Oct 12, 2024 · 0 comments

Comments

@webdeck
Copy link

webdeck commented Oct 12, 2024

There is a bug in line 198 of main.py:

if minute > 0 and minute < 30:

should be:

if minute > 0 and minute <= 30:

That way it will display "half past two" instead of "half two"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant