Skip to content

Commit

Permalink
misc.
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBernstorff committed Sep 29, 2023
1 parent 4a6083d commit 186e0ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FunctionalPython/sequence.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ def flatten(self) -> "Seq[_T0]":
return Seq(
item
for sublist in self._seq
for item in sublist
for item in sublist # type: ignore
if isinstance(sublist, Sequence)
)

0 comments on commit 186e0ce

Please sign in to comment.