mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Remove 'len-as-condition' disablement
This commit is contained in:
parent
d4efcc3c8b
commit
4538b3abb3
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -405,7 +405,7 @@ class DownloadWindowsDlls(Command):
|
|||
if IS_PY3:
|
||||
while True:
|
||||
chunk = req.read(4096)
|
||||
if len(chunk) == 0: # pylint: disable=len-as-condition
|
||||
if len(chunk) == 0:
|
||||
break
|
||||
wfh.write(chunk)
|
||||
wfh.flush()
|
||||
|
|
Loading…
Add table
Reference in a new issue