Skip to content

Commit

Permalink
Flake8: fix E501, line too long
Browse files Browse the repository at this point in the history
This finally fixes #17

modified:   flask_uploads.py
modified:   tox.ini
  • Loading branch information
jugmac00 committed Jun 29, 2020
1 parent 8f24ff1 commit 0284846
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions flask_uploads.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
TEXT = ('txt',)

# This contains various office document formats (.rtf, .odf, .ods, .gnumeric,
# .abw, .doc, .docx, .xls, .xlsx and .pdf). Note that the macro-enabled versions
# of Microsoft Office 2007 files are not included.
# .abw, .doc, .docx, .xls, .xlsx and .pdf). Note that the macro-enabled
# versions of Microsoft Office 2007 files are not included.
DOCUMENTS = tuple('rtf odf ods gnumeric abw doc docx xls xlsx pdf'.split())

# This contains basic image types that are viewable from most browsers (.jpg,
Expand Down
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,4 @@ force_single_line = True
# ignored to get started
# these warnings / errors have to be fixed at a later time
ignore =
E501, # line too long
W504, # line break after binary operator

0 comments on commit 0284846

Please sign in to comment.