Skip to content

Commit

Permalink
v1.2.1-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
edarchis committed Jan 22, 2021
1 parent 9ffa631 commit f89cc99
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion core/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import re
import sys
from datetime import datetime as py_datetime
from typing import Optional

import graphene
from core import ExtendedConnection
Expand Down Expand Up @@ -125,7 +126,7 @@ class Input:
client_mutation_details = graphene.List(graphene.String)

@classmethod
def async_mutate(cls, user, **data) -> str:
def async_mutate(cls, user, **data) -> Optional[str]:
"""
This method has to be overridden in the subclasses to implement the actual mutation.
The response should contain a boolean for success and an error message that will be saved into the DB
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name='openimis-be-core',
version='1.2.0rc4',
version='1.2.1rc1',
packages=find_packages(),
include_package_data=True,
license='GNU AGPL v3',
Expand All @@ -27,16 +27,16 @@
'django-simple-history',
'django-dirtyfields',
'websocket-client'
],
],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 2.1',
'Framework :: Django :: 3.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)
)

0 comments on commit f89cc99

Please sign in to comment.