Skip to content

Commit

Permalink
Deleted unused iso8601 package import to avoid error after update to …
Browse files Browse the repository at this point in the history
…graphene-django==2.2
  • Loading branch information
eamigo86 committed Nov 25, 2018
1 parent 00eeb41 commit 20238fd
Show file tree
Hide file tree
Showing 4 changed files with 311 additions and 312 deletions.
84 changes: 42 additions & 42 deletions graphene_django_extras/__init__.py
Original file line number Diff line number Diff line change
@@ -1,42 +1,42 @@
# -*- coding: utf-8 -*-
from graphene.pyutils.version import get_version

from .directives import all_directives
from .fields import DjangoObjectField, DjangoFilterListField, DjangoFilterPaginateListField, \
DjangoListObjectField
from .middleware import ExtraGraphQLDirectiveMiddleware
from .mutation import DjangoSerializerMutation
from .paginations import LimitOffsetGraphqlPagination, PageGraphqlPagination, CursorGraphqlPagination
from .types import DjangoObjectType, DjangoInputObjectType, DjangoListObjectType, DjangoSerializerType

VERSION = (0, 3, 8, 'beta', '8')

__version__ = get_version(VERSION)

__all__ = (
'__version__',

# FIELDS
'DjangoObjectField',
'DjangoFilterListField',
'DjangoFilterPaginateListField',
'DjangoListObjectField',

# MUTATIONS
'DjangoSerializerMutation',

# PAGINATIONS
'LimitOffsetGraphqlPagination',
'PageGraphqlPagination',
# 'CursorGraphqlPagination', # Not implemented yet

# TYPES
'DjangoObjectType',
'DjangoListObjectType',
'DjangoInputObjectType',
'DjangoSerializerType',

# DIRECTIVES
'all_directives',
'ExtraGraphQLDirectiveMiddleware'
)
# -*- coding: utf-8 -*-
from graphene.pyutils.version import get_version

from .directives import all_directives
from .fields import DjangoObjectField, DjangoFilterListField, DjangoFilterPaginateListField, \
DjangoListObjectField
from .middleware import ExtraGraphQLDirectiveMiddleware
from .mutation import DjangoSerializerMutation
from .paginations import LimitOffsetGraphqlPagination, PageGraphqlPagination, CursorGraphqlPagination
from .types import DjangoObjectType, DjangoInputObjectType, DjangoListObjectType, DjangoSerializerType

VERSION = (0, 3, 8, 'final', '')

__version__ = get_version(VERSION)

__all__ = (
'__version__',

# FIELDS
'DjangoObjectField',
'DjangoFilterListField',
'DjangoFilterPaginateListField',
'DjangoListObjectField',

# MUTATIONS
'DjangoSerializerMutation',

# PAGINATIONS
'LimitOffsetGraphqlPagination',
'PageGraphqlPagination',
# 'CursorGraphqlPagination', # Not implemented yet

# TYPES
'DjangoObjectType',
'DjangoListObjectType',
'DjangoInputObjectType',
'DjangoSerializerType',

# DIRECTIVES
'all_directives',
'ExtraGraphQLDirectiveMiddleware'
)
Loading

0 comments on commit 20238fd

Please sign in to comment.