Skip to content

Commit ccb93ec

Browse files
committed
revert __eq__ changes
1 parent 59abef0 commit ccb93ec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

stubs/pika/pika/amqp_object.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ from typing import ClassVar
33
class AMQPObject:
44
NAME: ClassVar[str]
55
INDEX: ClassVar[int | None]
6-
def __eq__(self, other: object) -> bool: ...
6+
def __eq__(self, other: AMQPObject | None) -> bool: ... # type: ignore[override]
77

88
class Class(AMQPObject): ...
99

0 commit comments

Comments
 (0)