mirror of
https://github.com/ansible/awx.git
synced 2026-04-26 20:25:24 -02:30
move code linting to a stricter pep8-esque auto-formatting tool, black
This commit is contained in:
@@ -7,4 +7,3 @@ class UINextConfig(AppConfig):
|
||||
|
||||
name = 'awx.ui_next'
|
||||
verbose_name = _('UI_Next')
|
||||
|
||||
|
||||
@@ -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')]
|
||||
|
||||
Reference in New Issue
Block a user