anopara / genetic-drawing

A genetic algorithm toy project for drawing
MIT License
2.18k stars 196 forks source link

genetic_drawing.py: Undefined names: rangeX and rangeY #8

Open cclauss opened 4 years ago

cclauss commented 4 years ago

flake8 testing of https://github.com/anopara/genetic-drawing on Python 3.8.3

$ flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics

./genetic_drawing.py:275:33: F821 undefined name 'rangeY'
            print(" Y range: ", rangeY, 'X range: ', rangeX)
                                ^
./genetic_drawing.py:275:54: F821 undefined name 'rangeX'
            print(" Y range: ", rangeY, 'X range: ', rangeX)
                                                     ^
./genetic_drawing.py:276:44: F821 undefined name 'rangeY'
            print('bg coord: ', posY, posY+rangeY, posX, posX+rangeX)
                                           ^
./genetic_drawing.py:276:63: F821 undefined name 'rangeX'
            print('bg coord: ', posY, posY+rangeY, posX, posX+rangeX)
                                                              ^
4     F821 undefined name 'rangeY'
4

https://flake8.pycqa.org/en/latest/user/error-codes.html

On the flake8 test selection, this PR does not focus on "style violations" (the majority of flake8 error codes that psf/black can autocorrect). Instead these tests are focus on runtime safety and correctness: