Skip to content

Commit 9b50502

Browse files
authored
Fix Lint in utils
1 parent fbe5c43 commit 9b50502

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: graphene_sqlalchemy/utils.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -151,12 +151,12 @@ def sort_argument_for_model(cls, has_default=True):
151151
return Argument(List(enum), default_value=enum.default)
152152

153153

154-
def is_sqlalchemy_version_less_than(version_string): # pragma: no cover
154+
def is_sqlalchemy_version_less_than(version_string): # pragma: no cover
155155
"""Check the installed SQLAlchemy version"""
156156
return pkg_resources.get_distribution('SQLAlchemy').parsed_version < pkg_resources.parse_version(version_string)
157157

158158

159-
def is_graphene_version_less_than(version_string): # pragma: no cover
159+
def is_graphene_version_less_than(version_string): # pragma: no cover
160160
"""Check the installed graphene version"""
161161
return pkg_resources.get_distribution('graphene').parsed_version < pkg_resources.parse_version(version_string)
162162

0 commit comments

Comments
 (0)