more flake8 fixes

This commit is contained in:
Mark Chackerian 2018-07-16 18:31:32 -04:00
parent c076412ba5
commit 8ca7b855ac
2 changed files with 2 additions and 1 deletions

View File

@ -66,6 +66,7 @@ __all__ = [
"Date", "Date",
"DateTime", "DateTime",
"Time", "Time",
"Decimal",
"JSONString", "JSONString",
"UUID", "UUID",
"List", "List",

View File

@ -40,4 +40,4 @@ def test_bad_decimal_query():
result = schema.execute("""{ decimal(input: "%s") }""" % not_a_decimal) result = schema.execute("""{ decimal(input: "%s") }""" % not_a_decimal)
assert len(result.errors) == 1 assert len(result.errors) == 1
assert result.data == None assert result.data is None