svgui/pyjs/pyjs.py
changeset 1744 69dfdb26f600
parent 1743 c3c3d1318130
child 1746 45d6f5fba016
--- a/svgui/pyjs/pyjs.py	Tue Aug 15 17:01:51 2017 +0300
+++ b/svgui/pyjs/pyjs.py	Tue Aug 15 22:38:43 2017 +0300
@@ -1051,7 +1051,7 @@
         rhs = self.expr(node.expr, current_klass)
         print >>self.output, "    " + lhs + " " + op + " " + rhs + ";"
 
-    def _assign(self, node, current_klass, top_level = False):
+    def _assign(self, node, current_klass, top_level=False):
         if len(node.nodes) != 1:
             tempvar = '__temp'+str(node.lineno)
             tnode = ast.Assign([ast.AssName(tempvar, "OP_ASSIGN", node.lineno)], node.expr, node.lineno)
@@ -1531,7 +1531,7 @@
 
 
 class PlatformParser:
-    def __init__(self, platform_dir = "", verbose=True):
+    def __init__(self, platform_dir="", verbose=True):
         self.platform_dir = platform_dir
         self.parse_cache = {}
         self.platform = ""