Skip to content

Commit

Permalink
Allow 100 character line length
Browse files Browse the repository at this point in the history
Now that we're starting to use python's typing module, 80 chars
is becoming increasingly restrictive.

This commit signals that dimod support 100 characters by adding
it to the setup.cfg. Ideally we would like to add it to the
pyproject.toml, but right now that's not supported. See
PyCQA/pycodestyle#813
  • Loading branch information
arcondello committed Jun 8, 2021
1 parent be747fa commit a535926
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,6 @@ packages =
dimod.views
python_requires = >=3.6
zip_safe = False

[pycodestyle]
max-line-length = 100

0 comments on commit a535926

Please sign in to comment.