Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 153da8b

Browse files
committed
put space in static array creator
1 parent 0c6ee8e commit 153da8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java2python/compiler/visitor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,7 @@ def acceptThisConstructorCall(self, node, memo):
847847

848848
def acceptStaticArrayCreator(self, node, memo):
849849
""" Accept and process a static array expression. """
850-
self.right = self.factory.expr(fs='[None]*{left}')
850+
self.right = self.factory.expr(fs='[None] * {left}')
851851
self.right.left = self.factory.expr()
852852
self.right.left.walk(node.firstChildOfType(tokens.EXPR), memo)
853853

0 commit comments

Comments
 (0)