File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ macro_rules! define_pyclass_binary_operator_slot {
275
275
_other: * mut $crate:: ffi:: PyObject ,
276
276
) -> * mut $crate:: ffi:: PyObject {
277
277
$crate:: callback:: handle_panic( |py| {
278
- use :: pyo3 :: class:: impl_:: * ;
278
+ use $crate :: class:: impl_:: * ;
279
279
let collector = PyClassImplCollector :: <$cls>:: new( ) ;
280
280
let lhs_result = collector. $lhs( py, _slf, _other) ?;
281
281
if lhs_result == $crate:: ffi:: Py_NotImplemented ( ) {
@@ -467,7 +467,7 @@ macro_rules! generate_pyclass_pow_slot {
467
467
_mod: * mut $crate:: ffi:: PyObject ,
468
468
) -> * mut $crate:: ffi:: PyObject {
469
469
$crate:: callback:: handle_panic( |py| {
470
- use :: pyo3 :: class:: impl_:: * ;
470
+ use $crate :: class:: impl_:: * ;
471
471
let collector = PyClassImplCollector :: <$cls>:: new( ) ;
472
472
let lhs_result = collector. __pow__( py, _slf, _other, _mod) ?;
473
473
if lhs_result == $crate:: ffi:: Py_NotImplemented ( ) {
You can’t perform that action at this time.
0 commit comments