Reformat using black

This commit is contained in:
cuom1999 2022-05-14 12:57:27 -05:00
parent efee4ad081
commit a87fb49918
221 changed files with 19127 additions and 7310 deletions

View file

@ -5,6 +5,6 @@ class TitledTemplateView(TemplateView):
title = None
def get_context_data(self, **kwargs):
if 'title' not in kwargs and self.title is not None:
kwargs['title'] = self.title
if "title" not in kwargs and self.title is not None:
kwargs["title"] = self.title
return super(TitledTemplateView, self).get_context_data(**kwargs)