Skip to content

Commit

Permalink
flake8: Enable pep8-naming plugin
Browse files Browse the repository at this point in the history
Also mark one incorrectly named property with noqa comment.
  • Loading branch information
suutari-ai committed Mar 12, 2017
1 parent 44046bd commit dced05f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion prequ/repositories/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def session(self):
return self.repository.session

@property
def DEFAULT_INDEX_URL(self):
def DEFAULT_INDEX_URL(self): # noqa (N802)
return self.repository.DEFAULT_INDEX_URL

def clear_caches(self):
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ skip_install = True
basepython = python2.7
deps =
flake8
pep8-naming
commands = flake8

0 comments on commit dced05f

Please sign in to comment.