Skip to content
Snippets Groups Projects
Commit f5ef2d89 authored by Daniel Bauer's avatar Daniel Bauer :speech_balloon:
Browse files

fix lint and static type check

parent c1fd9519
No related branches found
No related tags found
1 merge request!369Fix kernel function parameters
...@@ -49,7 +49,7 @@ class PsSymbol: ...@@ -49,7 +49,7 @@ class PsSymbol:
def __eq__(self, other: object) -> bool: def __eq__(self, other: object) -> bool:
return ( return (
type(self) == type(other) isinstance(other, PsSymbol)
and self._name == other._name and self._name == other._name
and self._dtype == other._dtype and self._dtype == other._dtype
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment