mirror of
https://github.com/django/daphne.git
synced 2025-04-21 17:22:03 +03:00
Merge pull request #23 from freakypie/querydict-params
keeping the parent class signature
This commit is contained in:
commit
3ea2799936
|
@ -43,5 +43,6 @@ class CustomQueryDict(QueryDict):
|
|||
Custom override of QueryDict that sets things directly.
|
||||
"""
|
||||
|
||||
def __init__(self, values):
|
||||
def __init__(self, values, mutable=False, encoding=None):
|
||||
""" mutable and encoding are ignored :( """
|
||||
MultiValueDict.__init__(self, values)
|
||||
|
|
Loading…
Reference in New Issue
Block a user