Manually fix issues that autopep8 introduced

* iam.py 161 -> 160 chars
* lamba -> single line function -> multiline function

Avoid redefining key

iam line length

iam.py now clean
This commit is contained in:
John Barker
2017-12-07 17:41:31 +00:00
committed by John R Barker
parent c57a7f05e1
commit 10cd2cd1b7
11 changed files with 31 additions and 26 deletions

View File

@@ -243,7 +243,8 @@ def main():
# Use v without a prefix to use with return values
v = DefineOid(dotprefix=False)
def Tree(): return defaultdict(Tree)
def Tree():
return defaultdict(Tree)
results = Tree()