Skip to content

Commit

Permalink
pyupgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
gtrepta committed Jul 30, 2024
1 parent 1cf1e0f commit 946c64b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ksoroban/scval.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class SCVec(SCValue):
val: tuple[SCValue]

def to_kast(self) -> KInner:
return sc_vec((v.to_kast() for v in self.val))
return sc_vec(v.to_kast() for v in self.val)


@dataclass(frozen=True)
Expand Down

0 comments on commit 946c64b

Please sign in to comment.