Skip to content

Commit 64b5f0a

Browse files
authored
Merge pull request #513 from bung87/fix-int-set-construction
fix int set construction
2 parents 61368e2 + 35862fa commit 64b5f0a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pixie/paths.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ proc parsePath*(path: string): Path {.raises: [PixieError].} =
167167
armed = true
168168

169169
template expectsArcFlag(): bool =
170-
kind in {Arc, RArc} and numbers.len mod 7 in {3, 4}
170+
kind in {Arc, RArc} and numbers.len mod 7 in [3, 4]
171171

172172
while p < path.len:
173173
case path[p]:

0 commit comments

Comments
 (0)