Skip to content

Commit fb6913b

Browse files
committed
Fix linter error
1 parent 36ac0d1 commit fb6913b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphene_sqlalchemy/fields.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def __init__(self, type, *args, **kwargs):
6969
try:
7070
model = type.Edge.node._type._meta.model
7171
kwargs.setdefault('sort', sort_argument_for_model(model))
72-
except Exception as e:
72+
except Exception:
7373
raise Exception(
7474
'Cannot create sort argument for {}. A model is required. Set the "sort" argument'
7575
' to None to disabling the creation of the sort query argument'.format(type.__name__)

0 commit comments

Comments
 (0)