Permalink
Browse files

Fix lint errors introduced by last change.

  • Loading branch information...
Andy Chu
Andy Chu committed Mar 19, 2018
1 parent dbb5580 commit 3df0caa192c66d78c0704434d731ccf0f5633e25
Showing with 5 additions and 5 deletions.
  1. +0 −1 asdl/arith_ast.py
  2. +3 −3 opy/compiler2/pyassem_test.py
  3. +2 −1 opy/compiler2/symbols_test.py
View
@@ -3,7 +3,6 @@
arith_ast.py
"""
import os
import sys
from asdl import asdl_ as asdl
@@ -19,9 +19,9 @@ def tearDown(self):
pass
def testFoo(self):
return
g = pyassem.FlowGraph()
print(g)
#g = pyassem.FlowGraph()
#print(g)
pass
if __name__ == '__main__':
@@ -32,7 +32,8 @@ def get_names(syms):
syms = symtable.symtable(buf, file, "exec")
mod_names = get_names(syms)
tree = parseFile(file)
#tree = parseFile(file)
tree = None
s = symbols.SymbolVisitor()
s.Dispatch(tree)

0 comments on commit 3df0caa

Please sign in to comment.