Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed May 23, 2023
1 parent 62b1609 commit 2df4f81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shared/src/main/scala/VList.scala
Expand Up @@ -101,10 +101,10 @@ class VList private (val lst: Seq[VAny])
end VList

object VList extends SpecificIterableFactory[VAny, VList]:
def from(it: Seq[VAny]): VList =
def from(it: Seq[VAny]): VList =
if it.isInstanceOf[VList] then it
else new VList(it)


/** Zip multiple VLists together with a function.
*
Expand Down

0 comments on commit 2df4f81

Please sign in to comment.