Skip to content

Commit 1b3c6c2

Browse files
author
Greg Svitak
committed
fix for pep
1 parent 15b1a8d commit 1b3c6c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphene_sqlalchemy/converter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def convert_column_to_int_or_id(type, column, registry=None):
102102
return ID(description=column.doc, required=not(column.nullable))
103103
else:
104104
return Int(description=getattr(column, 'doc', None),
105-
required=not(getattr(column, 'nullable', True)))
105+
required=not(getattr(column, 'nullable', True)))
106106

107107

108108
@convert_sqlalchemy_type.register(types.Boolean)

0 commit comments

Comments
 (0)