You get that error because you use kwargs.pop (presumably that's why)
and you pass OTHER_VALUE as a positional argument.

E.g. 

MY_FORM(request.POST, OTHER_VALUE=OTHER_VALUE)
would pass it as a keyword argument and then you can
use kwargs.pop('OTHER_VALUE') in the form's init.

On Fri, 2018-06-22 at 18:37 -0700, HashRocketSyntax wrote:
> When I call my form in my view, I am trying to pass MY_VALUE to the
> form as an argument.
> I am doing this because I want to get my validation out of my views
> and into my forms.
> 
> views.py
> OTHER_VALUE = "the query that i run"
> if request.method=='POST':
>   form = MY_FORM(request.POST, OTHER_VALUE)
> 
> forms.py
> class MY_FORM(forms.Form):
> 
>   real_value = forms.CharField()
>   def clean_real_value(self):
>     if OTHER_VALUE ...
> 
> 
> 
> This throws the error:__init__() got an unexpected keyword argument
> 'OTHER_VALUE'
> 
> =========
> 
> I've tried setting the init with kwargs
> class MY_FORM(forms.Form):
>   real_value = forms.CharField()
> 
>   def __init__(self, *args, **kwargs): 
>     OTHER_VALUE = kwargs.pop('OTHER_VALUE') 
>     super(MY_FORM, self).__init__(*args, **kwargs)
> 
> 
> error:
> Exception Value: 'employee'
> Exception Location: /Users/macbook/Desktop/OrgDB/orgchart/forms.py in
> __init__, line 42
> 
> 
> 
> 
> 
> 
> 
> 
> -- 
> 
> You received this message because you are subscribed to the Google
> Groups "Django users" group.
> 
> To unsubscribe from this group and stop receiving emails from it,
> send an email to [email protected].
> 
> To post to this group, send email to [email protected].
> 
> Visit this group at https://groups.google.com/group/django-users.
> 
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/61a17825-0a19-4573-8893-
> 49e1b715d045%40googlegroups.com.
> 
> For more options, visit https://groups.google.com/d/optout.
> 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/806191f9f0e1bdc7e823d1b6a443a6cf9a03bb97.camel%40tmkn.org.
For more options, visit https://groups.google.com/d/optout.

Reply via email to