Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
maltem-za committed Mar 4, 2016
1 parent cc93770 commit aabcc6f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions molo/servicedirectory/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,9 @@ class ServiceSelfSendSMSView(TemplateView):
template_name = 'servicedirectory/service_self_sms.html'

def get_context_data(self, **kwargs):
context = super(ServiceSelfSendSMSView, self).get_context_data(**kwargs)
context['service_id'] = self.kwargs['service_id']
context = super(ServiceSelfSendSMSView, self).get_context_data(
**kwargs
)
context['service_id'] = kwargs['service_id']

return context

0 comments on commit aabcc6f

Please sign in to comment.