summaryrefslogtreecommitdiff
path: root/pysnmp/debug.py
diff options
context:
space:
mode:
authorelie <elie>2015-10-17 19:14:29 +0000
committerelie <elie>2015-10-17 19:14:29 +0000
commit9e73d5b89c6121437b92f02482b4423ab526b51a (patch)
tree84e69ffdabad2f8b71dcdceac03234d26ba08c28 /pysnmp/debug.py
parent7ebcb3d0c1ce6b7722bf7b06b4826d27c2fa487b (diff)
downloadpysnmp-git-9e73d5b89c6121437b92f02482b4423ab526b51a.tar.gz
linted the bad-continuation issue as well as some others
Diffstat (limited to 'pysnmp/debug.py')
-rw-r--r--pysnmp/debug.py6
1 files changed, 2 insertions, 4 deletions
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))])