Skip to content

Commit

Permalink
Unignoring PEP8 W391
Browse files Browse the repository at this point in the history
  • Loading branch information
David Davis authored and daviddavis committed Sep 15, 2017
1 parent 6ad7898 commit 5d0f6ae
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion .pep8speaks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ pycodestyle:
max-line-length: 100 # Default is 79 in PEP8
ignore: # Errors and warnings to ignore
- E401 # multiple imports on one line
- W391 # blank line at the end of file (complains on empty __init__.py files)
exclude:
- "./docs/*"
- "*/build/*"
Expand Down
3 changes: 1 addition & 2 deletions flake8.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[flake8]
exclude = ./docs/*, */build/*, */migrations/*, server/*, rel-eng/*, bindings/*, client_admin/*, client_consumer/*, client_lib/*, devel/*, oid_validation/*, repoauth/*
# E401: multiple imports on one line
# W391: blank line at end of file (sadly, it will complain on empty __init__.py files)
ignore = E401,W391
ignore = E401
max-line-length = 100
1 change: 0 additions & 1 deletion platform/pulpcore/app/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,3 @@ def receive_data_chunk(self, raw_data, start):
self.file.write(raw_data)
for hasher in hashlib.algorithms_guaranteed:
self.file.hashers[hasher].update(raw_data)

0 comments on commit 5d0f6ae

Please sign in to comment.