Skip to content

Commit aa6d075

Browse files
authored
Merge pull request #235 from iisaev-qs/master
adjust Django version constraint & fix code coverage
2 parents dedb27d + 4583687 commit aa6d075

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ packages = [
3434
python = "^3.6"
3535
dataclasses = ">=0.6"
3636
djangorestframework = ">=3.9.0"
37-
Django = "<3.0.0>=1.11.16"
37+
Django = ">=1.11.16, <3.0.0"
3838
docstring-parser = ">=0.1"
3939
drf-yasg = ">=1.13.0"
4040
furl = "2.0.0"

winter/web/exceptions/exceptions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ def __init__(self, errors: Optional[Union[str, Dict]]):
2828
super().__init__('Failed to decode request data')
2929
if type(errors) == dict:
3030
self.errors = errors
31-
elif type(errors) == str:
31+
else:
3232
self.errors = {'error': errors}

0 commit comments

Comments
 (0)