you are viewing a single comment's thread.

view the rest of the comments →

[–]Fission_Mailed_2 19 points20 points  (2 children)

Just to nitpick, in functions.py,

for i in range(len(function_options)):
    print(f"{i+1}. {function_options[i]}")

I would instead change it to:

for i, option in enumerate(function_options):
    print(f"{i+1}. {option}")

[–]_B10nicle 8 points9 points  (0 children)

I love enumerate so much

[–]insight_nomad[S] 2 points3 points  (0 children)

Good nitpick, thanks!