Skip to content
This repository was archived by the owner on Nov 3, 2023. It is now read-only.

Commit 84ab3f2

Browse files
committed
One more code review fix
1 parent 25d11b6 commit 84ab3f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pep257.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ def __str__(self):
117117

118118
class Module(Definition):
119119

120-
_fields = ['name', '_source', 'start', 'end', 'decorators', 'docstring',
121-
'children', 'parent', '_all']
120+
_fields = ('name', '_source', 'start', 'end', 'decorators', 'docstring',
121+
'children', 'parent', '_all')
122122
is_public = True
123123
_nest = staticmethod(lambda s: {'def': Function, 'class': Class}[s])
124124
module = property(lambda self: self)

0 commit comments

Comments
 (0)