File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/sophios/api/utils/ict/ict_spec/metadata Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ def __str__(self) -> str:
4242 return self .root
4343
4444 @singledispatchmethod
45- def __eq__ (self , other : Any ) -> bool : # type: ignore # pylint: disable=incompatible-type
45+ def __eq__ (self , other : Any ) -> bool : # type: ignore[override] # pylint: disable=incompatible-type
4646 """Compare if two Author objects are equal."""
4747 msg = "invalid type for comparison."
4848 raise TypeError (msg )
@@ -82,7 +82,7 @@ def __str__(self) -> str:
8282 return self .root
8383
8484 @singledispatchmethod
85- def __eq__ (self , other : Any ) -> bool : # type: ignore # pylint: disable=incompatible-type
85+ def __eq__ (self , other : Any ) -> bool : # type: ignore[override] # pylint: disable=incompatible-type
8686 """Compare if two DOI objects are equal."""
8787 msg = "invalid type for comparison."
8888 raise TypeError (msg )
You can’t perform that action at this time.
0 commit comments