mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #66500 from s0undt3ch/hotfix/3006.x-fixes
[3006.x] Fix lint issues
This commit is contained in:
commit
65c65aae12
2 changed files with 4 additions and 2 deletions
|
@ -25,7 +25,9 @@ def server(config):
|
|||
send = []
|
||||
disconnect = False
|
||||
|
||||
async def handle_stream(self, stream, address):
|
||||
async def handle_stream( # pylint: disable=invalid-overridden-method
|
||||
self, stream, address
|
||||
):
|
||||
while self.disconnect is False:
|
||||
for msg in self.send[:]:
|
||||
msg = self.send.pop(0)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
Tests the SaltfileMixIn.
|
||||
"""
|
||||
|
||||
import optparse
|
||||
import optparse # pylint: disable=deprecated-module
|
||||
import shutil
|
||||
|
||||
import pytest
|
||||
|
|
Loading…
Add table
Reference in a new issue