Skip to content
Snippets Groups Projects
Commit 9eea169a authored by Sébastien Helleu's avatar Sébastien Helleu
Browse files

Disable two pylint errors

parent d1105d5f
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -315,12 +315,12 @@ class Client(object): # pylint: disable=too-many-instance-attributes
sys.stdout.write('.')
sys.stdout.flush()
 
def send_file(self):
def send_file(self): # pylint: disable=too-many-branches
"""Send messages from a file to client."""
stdin = self.args.file == sys.stdin
count = 0
self.read(0.2)
try:
try: # pylint: disable=too-many-nested-blocks
while True:
# display the prompt if we are reading in stdin
if stdin:
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment