Replace an unused variable with _
This commit is contained in:
parent
217fc2a487
commit
e2b98effda
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user