yt-project / yt_idv

Interactive volume rendering for yt
Other
8 stars 6 forks source link

flake8, setup-cfg-fmt collision fix #67

Closed chrishavlin closed 1 year ago

chrishavlin commented 1 year ago

together with #63 this should get precommit.ci passing again.

newer flake8 versions require that

E231, # Missing whitespace after ',', ';', or ':'

be changed to

# Missing whitespace after ',', ';', or ':'
E231, 

and then setup-cfg-fmt ends up removing those comment lines when pre-commit runs.... maybe not ideal but I don't see a way around it short of remove setup-cfg-fmt checks entirely.