File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -775,11 +775,11 @@ def __eq__(self, other: object) -> bool:
775775 or issubclass (self .__class__ , other .__class__ )
776776 or issubclass (other .__class__ , self .__class__ )
777777 ) and (
778- self .cmd == other .cmd
779- and self .stdin == other .stdin
780- and self .stdout == other .stdout
781- and self .stderr == other .stderr
782- and self .exit_code == other .exit_code
778+ self .cmd == other .cmd # type: ignore[attr-defined]
779+ and self .stdin == other .stdin # type: ignore[attr-defined]
780+ and self .stdout == other .stdout # type: ignore[attr-defined]
781+ and self .stderr == other .stderr # type: ignore[attr-defined]
782+ and self .exit_code == other .exit_code # type: ignore[attr-defined]
783783 )
784784
785785 def __ne__ (self , other : object ) -> bool :
You can’t perform that action at this time.
0 commit comments