Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Jan 12, 2019
1 parent 5850ce3 commit 27c881c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyquickhelper/loghelper/flog.py
Expand Up @@ -712,7 +712,7 @@ def _check_url_file(url, path_download, outfile, fLOG=noLOG):
request = urllib_request.Request(url)
request.add_header("Range", "bytes=%d-" % size)
fu = urllib_request.urlopen(request)
f = open(dest, formatopen.replace(
f = open(dest, formatopen.replace( # pylint: disable=W1501
"w", "a")) # pylint: disable=W1501
else:
fLOG("[loghelper.flog] downloading ", url)
Expand Down
1 change: 1 addition & 0 deletions src/pyquickhelper/pycode/_pylint_common.py
Expand Up @@ -194,6 +194,7 @@ def _private_test_style_test(fLOG, run_lint, verbose=False, pattern=".*[.]py$"):
"Unable to import 'src.pyquickhelper.jenkinshelper",
"Unable to import 'src.pyquickhelper",
"No name 'sphinxm_mock_app' in module 'src.pyquickhelper.helpgen'",
"test_yaml.py:348",
"test_yaml.py:351",
"test_downloadlink_extension.py:10: E0401: Unable to import 'distutils.version'",
"test_downloadlink_extension.py:10: E0611: No name 'version' in module 'distutils'",
Expand Down

0 comments on commit 27c881c

Please sign in to comment.