Skip to content

Instantly share code, notes, and snippets.

@skamithi
Last active October 18, 2022 19:42
Show Gist options
  • Save skamithi/20d0a16d0b836b7a08b8 to your computer and use it in GitHub Desktop.
Save skamithi/20d0a16d0b836b7a08b8 to your computer and use it in GitHub Desktop.
increasing size of max line to avoid pep8 e501 check

I use pymode to modify my python scripts. Keep on getting E501 when length of line is 82 or 83..which I think is just fine.

to fix this did the following

_$HOME/.config/pep8

[pep8]
max-line-length = 90

Reference: PEP8 docs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment