Skip to content

Commit

Permalink
fix: pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
lumasepa committed Dec 13, 2024
1 parent a48bafb commit d8a0021
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions nada_dsl/nada_types/collections.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ def generic_type(cls, left_type: U, right_type: T) -> TupleType:

@property
def left(self) -> DslType:
"""The left element of the Tuple."""
accessor = TupleAccessor(
index=0,
child=self,
Expand All @@ -179,6 +180,7 @@ def left(self) -> DslType:

@property
def right(self) -> DslType:
"""The right element of the Tuple."""
accessor = TupleAccessor(
index=1,
child=self,
Expand Down

0 comments on commit d8a0021

Please sign in to comment.