Skip to content

Commit

Permalink
fix flake8 config; EOF newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
tedder committed Jan 20, 2023
1 parent 3b4d2da commit b47d298
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
13 changes: 9 additions & 4 deletions .flake8
@@ -1,7 +1,12 @@
[flake8]
max-line-length = 120
ignore = E701, #allow multi on same line
ignore =
#allow multi on same line
E701,
F401,F821,
W503,W504,W505, # default ignored
E741 # allow short vars
F841 # unused vars are needed for safety
# default ignored
W503,W504,W505,
# allow short vars
E741
# unused vars are needed for safety
F841
1 change: 0 additions & 1 deletion requests_aws4auth/test/test_live.py
Expand Up @@ -228,4 +228,3 @@ def test_mobileanalytics(self):
response = requests.post(url, auth=auth, headers=headers, data=body)
response.connection.close()
self.assertTrue(response.ok)

1 change: 0 additions & 1 deletion setup.py
Expand Up @@ -66,4 +66,3 @@ def find_version(*file_paths):
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Internet :: WWW/HTTP'])

0 comments on commit b47d298

Please sign in to comment.