We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e10958 commit 7e565bdCopy full SHA for 7e565bd
vyper/semantics/types/subscriptable.py
@@ -278,6 +278,10 @@ class TupleT(_SequenceT):
278
279
_equality_attrs = ("value_type",)
280
281
+ # keep LGTM linter happy
282
+ def __eq__(self, other):
283
+ return super().__eq__(other)
284
+
285
def __init__(self, value_type: Tuple[VyperType, ...]) -> None:
286
# TODO: fix the typing here.
287
super().__init__(value_type, len(value_type)) # type: ignore
0 commit comments