Commit 42be55fb authored by Liam Brenner's avatar Liam Brenner
Browse files

Rearranged paramters in init method

parent 009aa35c
......@@ -51,8 +51,8 @@ def get_video_form(model):
class VideoTranscodeAdminForm(forms.Form):
media_format = EnumField(MediaFormats)
def __init__(self, data=None, video, **kwargs):
super().__init__(data, **kwargs)
def __init__(self, **kwargs, video, data=None):
super().__init__(**kwargs, data=None)
self.video = video
def save(self):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment