Skip to content

Commit

Permalink
setting max line length to 88 with flake
Browse files Browse the repository at this point in the history
Signed-off-by: Oleg Höfling <oleg.hoefling@gmail.com>
  • Loading branch information
hoefling committed Apr 19, 2019
1 parent 385fad3 commit e023b9a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion devpi_ext/login.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def devpiclient_get_password(url, username):
return None

if password:
print ('Using {} credentials from .pypirc'.format(username))
print('Using {} credentials from .pypirc'.format(username))
return password


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.black]
skip-string-normalization = true
line-length = 88
target_version = ['py27', 'py33', 'py34', 'py35', 'py36', 'py37', 'py38']
target_version = ['py34', 'py35', 'py36', 'py37', 'py38']
include = '\.pyi?$'
exclude = '''
Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ test=pytest
[bdist_wheel]
universal=1

[flake8]
max-line-length=88

[tool:pytest]
testpaths=tests
addopts=
Expand Down

0 comments on commit e023b9a

Please sign in to comment.