mirror of
https://github.com/ansible/awx.git
synced 2026-03-29 06:45:09 -02:30
black does *not* warn about missing or extraneous imports, so let's bring back flake8 in our linting to check for them
19 lines
384 B
Python
19 lines
384 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
# AWX
|
|
from awx.main.migrations import _credentialtypes as credentialtypes
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0027_v330_emitted_events'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RunPython(credentialtypes.add_tower_verify_field),
|
|
]
|