mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-23 08:21:49 -05:00
black does *not* warn about missing or extraneous imports, so let's bring back flake8 in our linting to check for them
21 lines
550 B
Python
21 lines
550 B
Python
# -*- coding: utf-8 -*-
|
|
# Python
|
|
from __future__ import unicode_literals
|
|
|
|
# AWX
|
|
from awx.main.migrations import ActivityStreamDisabledMigration
|
|
|
|
|
|
class Migration(ActivityStreamDisabledMigration):
|
|
|
|
dependencies = [
|
|
('main', '0006_v320_release'),
|
|
]
|
|
|
|
operations = [
|
|
# This list is intentionally empty.
|
|
# Tower 3.2 included several data migrations that are no longer
|
|
# necessary (this list is now empty because Tower 3.2 is past EOL and
|
|
# cannot be directly upgraded to modern versions of Tower)
|
|
]
|