From 9e73d5b89c6121437b92f02482b4423ab526b51a Mon Sep 17 00:00:00 2001 From: elie Date: Sat, 17 Oct 2015 19:14:29 +0000 Subject: linted the bad-continuation issue as well as some others --- pysnmp/debug.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'pysnmp/debug.py') diff --git a/pysnmp/debug.py b/pysnmp/debug.py index fe6967b9..bec85400 100644 --- a/pysnmp/debug.py +++ b/pysnmp/debug.py @@ -109,7 +109,5 @@ def setLogger(l): logger = l def hexdump(octets): - return ' '.join( - ['%s%.2X' % (n%16 == 0 and ('\n%.5d: ' % n) or '', x) - for n, x in zip(range(len(octets)), octs2ints(octets))] - ) + return ' '.join(['%s%.2X' % (n%16 == 0 and ('\n%.5d: ' % n) or '', x) + for n, x in zip(range(len(octets)), octs2ints(octets))]) -- cgit v1.2.1