Revert "Update to use relative imports"

This reverts commit c7b9d6b509.

Change-Id: Ie9ac16789d7efd57144471021ee9f82fa1146859
This commit is contained in:
Steve Wilkerson 2019-11-21 13:52:50 +00:00
parent d7dd0b0baa
commit d82d0c7f61
6 changed files with 12 additions and 12 deletions

View File

@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from .base import OSBase
from base import OSBase
from urllib.parse import urlparse
from prometheus_client import CollectorRegistry, generate_latest, Gauge

View File

@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from .base import OSBase
from base import OSBase
from collections import Counter
from collections import defaultdict
from prometheus_client import CollectorRegistry, generate_latest, Gauge

View File

@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from .base import OSBase
from base import OSBase
from prometheus_client import CollectorRegistry, generate_latest, Gauge
import logging

View File

@ -23,13 +23,13 @@ from http.server import HTTPServer
from socketserver import ForkingMixIn
from prometheus_client import CONTENT_TYPE_LATEST
from .osclient import OSClient
from .oscache import OSCache
from .check_os_api import CheckOSApi
from .neutron_agents import NeutronAgentStats
from .nova_services import NovaServiceStats
from .cinder_services import CinderServiceStats
from .hypervisor_stats import HypervisorStats
from osclient import OSClient
from oscache import OSCache
from check_os_api import CheckOSApi
from neutron_agents import NeutronAgentStats
from nova_services import NovaServiceStats
from cinder_services import CinderServiceStats
from hypervisor_stats import HypervisorStats
import logging
logging.basicConfig(

View File

@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from .base import OSBase
from base import OSBase
from collections import Counter
from collections import defaultdict
from prometheus_client import CollectorRegistry, generate_latest, Gauge

View File

@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from .base import OSBase
from base import OSBase
from collections import Counter
from collections import defaultdict
from prometheus_client import CollectorRegistry, generate_latest, Gauge