keeping the parent class signature

This commit is contained in:
John Leith 2015-10-14 08:20:23 -06:00
parent ab2f1df698
commit 56c375d460

View File

@ -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)