diff --git a/src/lazy_object_proxy/slots.py b/src/lazy_object_proxy/slots.py index 2586de4..f2eca21 100644 --- a/src/lazy_object_proxy/slots.py +++ b/src/lazy_object_proxy/slots.py @@ -223,7 +223,7 @@ def __floordiv__(self, other): return self.__wrapped__ // other def __mod__(self, other): - return self.__wrapped__ ^ other + return self.__wrapped__ % other def __divmod__(self, other): return divmod(self.__wrapped__, other)