File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ def make_case(self):
154154 case = vtypes .Case (self .state )(* body )
155155 ret .append (case )
156156
157- return tuple ( ret )
157+ return ret
158158
159159 def make_if (self ):
160160 indexes = set (self .body .keys ())
@@ -174,7 +174,7 @@ def make_if(self):
174174
175175 ret .extend ([ self ._get_if_statement (index )
176176 for index in sorted (indexes , key = lambda x :x ) ])
177- return tuple ( ret )
177+ return ret
178178
179179 #---------------------------------------------------------------------------
180180 def make_reset (self , reset ):
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ def make_code(self):
120120 ret .extend (body )
121121
122122 ret .extend (self .body )
123- return tuple ( ret )
123+ return ret
124124
125125 #---------------------------------------------------------------------------
126126 def make_reset (self ):
You can’t perform that action at this time.
0 commit comments