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

Skip to content

Commit 39e11fb

Browse files
committed
Whitespace normalization.
1 parent 7356dcb commit 39e11fb

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Lib/compiler/ast.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ def __init__(self, decorators, name, argnames, defaults, flags, doc, code, linen
554554
self.varargs = 1
555555
if flags & CO_VARKEYWORDS:
556556
self.kwargs = 1
557-
557+
558558

559559

560560
def getChildren(self):
@@ -585,7 +585,7 @@ def __init__(self, code, lineno=None):
585585
self.lineno = lineno
586586
self.argnames = ['[outmost-iterable]']
587587
self.varargs = self.kwargs = None
588-
588+
589589

590590

591591
def getChildren(self):
@@ -780,7 +780,7 @@ def __init__(self, argnames, defaults, flags, code, lineno=None):
780780
self.varargs = 1
781781
if flags & CO_VARKEYWORDS:
782782
self.kwargs = 1
783-
783+
784784

785785

786786
def getChildren(self):

0 commit comments

Comments
 (0)