diff --git a/nada_dsl/nada_types/collections.py b/nada_dsl/nada_types/collections.py index 3f80e78..e8d4d4b 100644 --- a/nada_dsl/nada_types/collections.py +++ b/nada_dsl/nada_types/collections.py @@ -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, @@ -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,