move code linting to a stricter pep8-esque auto-formatting tool, black

This commit is contained in:
Ryan Petrello
2021-03-19 12:44:51 -04:00
parent 9b702e46fe
commit c2ef0a6500
671 changed files with 20538 additions and 21924 deletions

View File

@@ -7,4 +7,3 @@ class UINextConfig(AppConfig):
name = 'awx.ui_next'
verbose_name = _('UI_Next')

View File

@@ -13,7 +13,7 @@ class IndexView(TemplateView):
class MigrationsNotran(TemplateView):
template_name = 'installing.html'
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
product_name = get_licenser().validate()['product_name']
@@ -27,7 +27,4 @@ class MigrationsNotran(TemplateView):
app_name = 'ui_next'
urlpatterns = [
url(r'^$', IndexView.as_view(), name='index'),
url(r'^migrations_notran/$', MigrationsNotran.as_view(), name='migrations_notran'),
]
urlpatterns = [url(r'^$', IndexView.as_view(), name='index'), url(r'^migrations_notran/$', MigrationsNotran.as_view(), name='migrations_notran')]