File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -240,16 +240,16 @@ def _container_child_containers(self):
240240 Containers for child objects that are a container and
241241 have a single parent.
242242 """
243- return tuple (( _container_name (child ) for child in
244- self ._container_child_objects ) )
243+ return tuple ([ _container_name (child ) for child in
244+ self ._container_child_objects ] )
245245
246246 @property
247247 def _data_child_containers (self ):
248248 """
249249 Containers for child objects that have data and have a single parent.
250250 """
251- return tuple (( _container_name (child ) for child in
252- self ._data_child_objects ) )
251+ return tuple ([ _container_name (child ) for child in
252+ self ._data_child_objects ] )
253253
254254 @property
255255 def _child_containers (self ):
You can’t perform that action at this time.
0 commit comments