total seconds on-the-clock: 0
--> --> ZeroDivisionError | Python 3.9.20: /usr/bin/python3 Sun Dec 22 23:28:34 2024 |
A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.
/var/www/draftmatic/scripts/team.cgi in <module> |
77 print("</div>\n") |
78 print(f"<p>total seconds on-the-clock: {total_user_on_clock_seconds}") |
=> 79 print(f"<br>average seconds per pick: {int(total_user_on_clock_seconds/total_number_of_team_picks)}") |
80 |
81 else: |
builtin print = <built-in function print> |
ZeroDivisionError: division by zero
args =
('division by zero',)
with_traceback =
<built-in method with_traceback of ZeroDivisionError object>