nova/nova/tests/fixtures/__init__.py
Artom Lifshitz faa1e64e5b Fix pep8 errors with new hacking
Hacking has bumped the version of flake8 that it's using to 5.0 in its
6.0.1 release. This turns up quite a few pep8 errors lurking in our
code. Fix them.

Needed-by: https://review.opendev.org/c/openstack/hacking/+/874516
Change-Id: I3b9c7f9f5de757f818ec358c992ffb0e5f3e310f
2023-04-28 08:34:52 -04:00

33 lines
1.7 KiB
Python

# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from .api_paste import ApiPasteNoProjectId # noqa: F401, H304
from .api_paste import ApiPasteV21Fixture # noqa: F401, H304
from .cast_as_call import CastAsCallFixture # noqa: F401, H304
from .cinder import CinderFixture # noqa: F401, H304
from .conf import ConfFixture # noqa: F401, H304, F403
from .cyborg import CyborgFixture # noqa: F401, H304
from .filesystem import SysFileSystemFixture # noqa: F401, H304
from .filesystem import TempFileSystemFixture # noqa: F401, H304
from .glance import GlanceFixture # noqa: F401, H304
from .libvirt import LibvirtFixture # noqa: F401, H304
from .libvirt_imagebackend import \
LibvirtImageBackendFixture # noqa: F401, H304
from .neutron import NeutronFixture # noqa: F401, H304
from .notifications import NotificationFixture # noqa: F401, H304
from .nova import * # noqa: F401, F403, H303, H304
from .os_brick import OSBrickFixture # noqa: F401, H304
from .policy import OverridePolicyFixture # noqa: F401, H304
from .policy import PolicyFixture # noqa: F401, H304
from .policy import RealPolicyFixture # noqa: F401, H304
from .policy import RoleBasedPolicyFixture # noqa: F401, H304