michaelyoungstrom / golfpool

[WIP] Django web application to run a fantasy-style golf pool with friends
0 stars 0 forks source link

Undefined name 'last_position' in update_user_event_scores.py #1

Closed cclauss closed 5 years ago

cclauss commented 5 years ago

flake8 testing of https://github.com/michaelyoungstrom/golfpool on Python 3.7.1

$ flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics

./players/management/commands/update_user_event_scores.py:65:34: F821 undefined name 'last_position'
                event.position = last_position
                                 ^
1     F821 undefined name 'last_position'
1

E901,E999,F821,F822,F823 are the "showstopper" flake8 issues that can halt the runtime with a SyntaxError, NameError, etc. Most other flake8 issues are merely "style violations" -- useful for readability but they do not effect runtime safety.

michaelyoungstrom commented 5 years ago

Thanks @cclauss. Fixed and closing