mirror of
https://pagure.io/fm-orchestrator.git
synced 2026-04-27 04:02:23 +08:00
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:
@@ -2,12 +2,13 @@
|
||||
# SPDX-License-Identifier: MIT
|
||||
"""Generic resolver functions."""
|
||||
|
||||
from __future__ import absolute_import
|
||||
|
||||
import six
|
||||
from abc import ABCMeta, abstractmethod
|
||||
import six
|
||||
|
||||
import module_build_service.common.config as cfg
|
||||
from module_build_service import conf
|
||||
import module_build_service.common.config as cfg
|
||||
|
||||
|
||||
class GenericResolver(six.with_metaclass(ABCMeta)):
|
||||
|
||||
Reference in New Issue
Block a user