From e2b98effda3921cd30f708ea15852051d52b1aa4 Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Tue, 19 Jun 2018 16:23:49 -0700 Subject: [PATCH] Replace an unused variable with `_` --- hy/compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hy/compiler.py b/hy/compiler.py index 644ea5e..2103928 100755 --- a/hy/compiler.py +++ b/hy/compiler.py @@ -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