Skip to content

Commit 0d4f952

Browse files
committed
Fixed flake issues
1 parent 2853241 commit 0d4f952

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

graphql/__init__.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,6 @@
2323
'''
2424
from .pyutils.version import get_version
2525

26-
27-
VERSION = (2, 0, 0, 'alpha', 0)
28-
__version__ = get_version(VERSION)
29-
30-
3126
# The primary entry point into fulfilling a GraphQL request.
3227
from .graphql import (
3328
graphql
@@ -197,7 +192,13 @@
197192
Undefined,
198193
)
199194

195+
196+
VERSION = (2, 0, 0, 'alpha', 0)
197+
__version__ = get_version(VERSION)
198+
199+
200200
__all__ = (
201+
'__version__',
201202
'graphql',
202203
'GraphQLBoolean',
203204
'GraphQLEnumType',

0 commit comments

Comments
 (0)