Replace an unused variable with _

This commit is contained in:
Kodi Arfer 2018-06-19 16:23:49 -07:00
parent 217fc2a487
commit e2b98effda

View File

@ -548,7 +548,7 @@ class HyASTCompiler(object):
@special(["quote", "quasiquote"], [FORM])
def compile_quote(self, expr, root, arg):
level = Inf if root == "quote" else 0 # Only quasiquotes can unquote
imports, stmts, splice = self._render_quoted_form(arg, level)
imports, stmts, _ = self._render_quoted_form(arg, level)
ret = self.compile(stmts)
ret.add_imports("hy", imports)
return ret