@@ -1653,8 +1653,8 @@ impl ToPyAst for ast::StmtPass<TextRange> {
16531653 fn to_py_ast < ' py > ( & self , py : Python < ' py > ) -> PyResult < & ' py PyAny > {
16541654 let cache = Self :: py_type_cache ( ) . get ( ) . unwrap ( ) ;
16551655
1656- let instance = Py :: < PyAny > :: as_ref ( & cache. 0 , py) . call0 ( ) ?;
16571656 let Self { range : _range } = self ;
1657+ let instance = Py :: < PyAny > :: as_ref ( & cache. 0 , py) . call0 ( ) ?;
16581658
16591659 Ok ( instance)
16601660 }
@@ -1665,8 +1665,8 @@ impl ToPyAst for ast::StmtBreak<TextRange> {
16651665 fn to_py_ast < ' py > ( & self , py : Python < ' py > ) -> PyResult < & ' py PyAny > {
16661666 let cache = Self :: py_type_cache ( ) . get ( ) . unwrap ( ) ;
16671667
1668- let instance = Py :: < PyAny > :: as_ref ( & cache. 0 , py) . call0 ( ) ?;
16691668 let Self { range : _range } = self ;
1669+ let instance = Py :: < PyAny > :: as_ref ( & cache. 0 , py) . call0 ( ) ?;
16701670
16711671 Ok ( instance)
16721672 }
@@ -1677,8 +1677,8 @@ impl ToPyAst for ast::StmtContinue<TextRange> {
16771677 fn to_py_ast < ' py > ( & self , py : Python < ' py > ) -> PyResult < & ' py PyAny > {
16781678 let cache = Self :: py_type_cache ( ) . get ( ) . unwrap ( ) ;
16791679
1680- let instance = Py :: < PyAny > :: as_ref ( & cache. 0 , py) . call0 ( ) ?;
16811680 let Self { range : _range } = self ;
1681+ let instance = Py :: < PyAny > :: as_ref ( & cache. 0 , py) . call0 ( ) ?;
16821682
16831683 Ok ( instance)
16841684 }
@@ -3429,8 +3429,8 @@ impl ToPyAst for ast::StmtPass<SourceRange> {
34293429 fn to_py_ast < ' py > ( & self , py : Python < ' py > ) -> PyResult < & ' py PyAny > {
34303430 let cache = Self :: py_type_cache ( ) . get ( ) . unwrap ( ) ;
34313431
3432- let instance = Py :: < PyAny > :: as_ref ( & cache. 0 , py) . call0 ( ) ?;
34333432 let Self { range : _range } = self ;
3433+ let instance = Py :: < PyAny > :: as_ref ( & cache. 0 , py) . call0 ( ) ?;
34343434
34353435 let cache = ast_cache ( ) ;
34363436 instance. setattr ( cache. lineno . as_ref ( py) , _range. start . row . get ( ) ) ?;
@@ -3449,8 +3449,8 @@ impl ToPyAst for ast::StmtBreak<SourceRange> {
34493449 fn to_py_ast < ' py > ( & self , py : Python < ' py > ) -> PyResult < & ' py PyAny > {
34503450 let cache = Self :: py_type_cache ( ) . get ( ) . unwrap ( ) ;
34513451
3452- let instance = Py :: < PyAny > :: as_ref ( & cache. 0 , py) . call0 ( ) ?;
34533452 let Self { range : _range } = self ;
3453+ let instance = Py :: < PyAny > :: as_ref ( & cache. 0 , py) . call0 ( ) ?;
34543454
34553455 let cache = ast_cache ( ) ;
34563456 instance. setattr ( cache. lineno . as_ref ( py) , _range. start . row . get ( ) ) ?;
@@ -3469,8 +3469,8 @@ impl ToPyAst for ast::StmtContinue<SourceRange> {
34693469 fn to_py_ast < ' py > ( & self , py : Python < ' py > ) -> PyResult < & ' py PyAny > {
34703470 let cache = Self :: py_type_cache ( ) . get ( ) . unwrap ( ) ;
34713471
3472- let instance = Py :: < PyAny > :: as_ref ( & cache. 0 , py) . call0 ( ) ?;
34733472 let Self { range : _range } = self ;
3473+ let instance = Py :: < PyAny > :: as_ref ( & cache. 0 , py) . call0 ( ) ?;
34743474
34753475 let cache = ast_cache ( ) ;
34763476 instance. setattr ( cache. lineno . as_ref ( py) , _range. start . row . get ( ) ) ?;
0 commit comments