Skip to content

Commit 7e565bd

Browse files
fix lgtm lint
1 parent 1e10958 commit 7e565bd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

vyper/semantics/types/subscriptable.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,10 @@ class TupleT(_SequenceT):
278278

279279
_equality_attrs = ("value_type",)
280280

281+
# keep LGTM linter happy
282+
def __eq__(self, other):
283+
return super().__eq__(other)
284+
281285
def __init__(self, value_type: Tuple[VyperType, ...]) -> None:
282286
# TODO: fix the typing here.
283287
super().__init__(value_type, len(value_type)) # type: ignore

0 commit comments

Comments
 (0)