Flake8 cleanup

This commit is contained in:
Paul Tagliamonte 2014-03-29 14:48:30 -04:00
parent 54da3f08dd
commit a5ad0203d1
1 changed files with 1 additions and 1 deletions

View File

@ -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(