fix indent

This commit is contained in:
gilch 2018-03-19 22:39:18 +00:00 committed by Kodi Arfer
parent ad59fd7ff6
commit e7b21cc0df

View File

@ -150,8 +150,8 @@ the second form, the second result is inserted into the third form, and so on."
(setv ret head)
(for* [node args]
(setv ret (if (isinstance node HyExpression)
`(~(first node) ~ret ~@(rest node))
`(~node ~ret))))
`(~(first node) ~ret ~@(rest node))
`(~node ~ret))))
ret)
@ -175,8 +175,8 @@ the second form, the second result is inserted into the third form, and so on."
(setv ret head)
(for* [node args]
(setv ret (if (isinstance node HyExpression)
`(~@node ~ret)
`(~node ~ret))))
`(~@node ~ret)
`(~node ~ret))))
ret)