From a5ad0203d100da496d9361a46e6638d6b2bbbc42 Mon Sep 17 00:00:00 2001 From: Paul Tagliamonte Date: Sat, 29 Mar 2014 14:48:30 -0400 Subject: [PATCH] Flake8 cleanup --- hy/macros.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hy/macros.py b/hy/macros.py index cf994a2..937e7b8 100644 --- a/hy/macros.py +++ b/hy/macros.py @@ -213,7 +213,7 @@ def reader_macroexpand(char, tree, module_name): """Expand the reader macro "char" with argument `tree`.""" load_macros(module_name) - if not char in _hy_reader[module_name]: + if char not in _hy_reader[module_name]: raise HyTypeError( char, "`{0}' is not a reader macro in module '{1}'".format(