Merge "Get rid of normalization in network CL" into feature/r1

This commit is contained in:
Zuul 2021-12-31 10:29:59 +00:00 committed by Gerrit Code Review
commit b5dd992751
2 changed files with 2 additions and 4 deletions

View File

@ -17,13 +17,12 @@ import threading
import time
import types # noqa
from openstack.cloud import _normalize
from openstack.cloud import _utils
from openstack.cloud import exc
from openstack import exceptions
class NetworkCloudMixin(_normalize.Normalizer):
class NetworkCloudMixin:
def __init__(self):
self._ports = None

View File

@ -16,11 +16,10 @@
import threading
import types # noqa
from openstack.cloud import _normalize
from openstack.cloud import exc
class NetworkCommonCloudMixin(_normalize.Normalizer):
class NetworkCommonCloudMixin:
"""Shared networking functions used by FloatingIP, Network, Compute classes
"""