summaryrefslogtreecommitdiff
path: root/pysnmp/smi/instrum.py
diff options
context:
space:
mode:
authorelie <elie>2015-10-17 15:34:21 +0000
committerelie <elie>2015-10-17 15:34:21 +0000
commit7ebcb3d0c1ce6b7722bf7b06b4826d27c2fa487b (patch)
tree8cdd9f0b8d08d4af24ff7ade9ead79285c037105 /pysnmp/smi/instrum.py
parent71dd5565a4b2948237a87319b57c565e18605761 (diff)
downloadpysnmp-git-7ebcb3d0c1ce6b7722bf7b06b4826d27c2fa487b.tar.gz
multiple-statements-in-one-line linted out
Diffstat (limited to 'pysnmp/smi/instrum.py')
-rw-r--r--pysnmp/smi/instrum.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/pysnmp/smi/instrum.py b/pysnmp/smi/instrum.py
index e9d32f84..922f7e4b 100644
--- a/pysnmp/smi/instrum.py
+++ b/pysnmp/smi/instrum.py
@@ -55,7 +55,8 @@ class MibInstrumController(AbstractMibInstrumController):
self.lastBuildId = -1
self.lastBuildSyms = {}
- def getMibBuilder(self): return self.mibBuilder
+ def getMibBuilder(self):
+ return self.mibBuilder
# MIB indexing
@@ -101,7 +102,11 @@ class MibInstrumController(AbstractMibInstrumController):
# Mind you, only Managed Objects get indexed here, various MIB defs and
# constants can't be SNMP managed so we drop them.
#
- scalars = {}; instances = {}; tables = {}; rows = {}; cols = {}
+ scalars = {}
+ instances = {}
+ tables = {}
+ rows = {}
+ cols = {}
# Sort by module name to give user a chance to slip-in
# custom MIB modules (that would be sorted out first)