Rearrange the imports to meet the style guide

This also includes `from __future__ import absolute_import`
in every file so that the imports are consistent in Python 2 and 3.
The Python 2 tests fail without this.
This commit is contained in:
mprahl
2020-01-06 11:19:47 -05:00
parent f1488967b2
commit af9505b0e1
95 changed files with 411 additions and 279 deletions

View File

@@ -2,10 +2,12 @@
# SPDX-License-Identifier: MIT
"""Generic component build functions."""
import six
import dogpile.cache
from __future__ import absolute_import
from abc import ABCMeta, abstractmethod
import dogpile.cache
from requests.exceptions import ConnectionError
import six
from module_build_service import conf, log
from module_build_service.common import models