File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -214,4 +214,4 @@ python runtests.py
214214
215215# Author
216216
217- @Copyright 2020 , Duke Effiom
217+ @Copyright 2021 , Duke Effiom
Original file line number Diff line number Diff line change 11__title__ = 'drf_nested_formdata'
2- __version__ = '1.0.0 '
2+ __version__ = '1.0.1 '
33__author__ = 'Duke Effiom'
44__license__ = 'MIT'
55__copyright__ = 'Copyright 2021'
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ def get_version(package):
2626 name = 'drf_nested_forms' ,
2727 version = version ,
2828 url = 'http://github.com/emperorDuke/nested_formdata' ,
29- download_url = 'http://github.com/emperorDuke/nested_formdata/archive/v1.0.0 .tar.gz' ,
29+ download_url = 'http://github.com/emperorDuke/nested_formdata/archive/v1.0.1 .tar.gz' ,
3030 license = 'MIT' ,
3131 description = 'A library that parses nested json or form data to python object' ,
3232 long_description = long_description ,
Original file line number Diff line number Diff line change 1- from drf_nested_forms .exceptions import ParseException
21import unittest
32
43from django .http import QueryDict
54
65from drf_nested_forms .utils import NestedForms
6+ from drf_nested_forms .exceptions import ParseException
77
88
99class NestedFormTestCase (unittest .TestCase ):
1010
1111 def test_data_1 (self ):
12-
12+ """
13+ list data
14+ """
1315 data_1 = {
1416 '[0][attribute]' : 'size' ,
1517 '[0][verbose][0]' : 'bazz' ,
You can’t perform that action at this time.
0 commit comments