Merge pull request #6723 from ulyssessouza/fix-reorder-imports

Fix imports ordering
This commit is contained in:
Ulysses Souza 2019-05-23 22:04:50 +02:00 committed by GitHub
commit e806520dc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -15,9 +15,9 @@ from release.const import NAME
from release.const import REPO_ROOT
from release.downloader import BinaryDownloader
from release.images import ImageManager
from release.images import is_tag_latest
from release.pypi import check_pypirc
from release.pypi import pypi_upload
from release.images import is_tag_latest
from release.repository import delete_assets
from release.repository import get_contributors
from release.repository import Repository

View File

@ -9,12 +9,11 @@ import os
import docker
from enum import Enum
from script.release.release.const import COMPOSE_TESTS_IMAGE_BASE_NAME
from .const import NAME
from .const import REPO_ROOT
from .utils import ScriptError
from .utils import yesno
from script.release.release.const import COMPOSE_TESTS_IMAGE_BASE_NAME
class Platform(Enum):