Remove unused imports
This commit is contained in:
parent
24e8f65aaf
commit
8855a2c6b6
3 changed files with 3 additions and 6 deletions
|
@ -1,6 +1,5 @@
|
||||||
from domain import Release, Version, ReleaseType
|
from domain import Release, Version, ReleaseType
|
||||||
from infrastructure_api import FileHandler, SystemAPI, GitApi
|
from infrastructure_api import FileHandler
|
||||||
from pathlib import Path
|
|
||||||
|
|
||||||
class VersionRepository():
|
class VersionRepository():
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,6 @@ from ddadevops import execute
|
||||||
from ddadevops import gopass_field_from_path, gopass_password_from_path
|
from ddadevops import gopass_field_from_path, gopass_password_from_path
|
||||||
from infrastructure import GitApi, ReleaseRepository, ReleaseTypeRepository, VersionRepository
|
from infrastructure import GitApi, ReleaseRepository, ReleaseTypeRepository, VersionRepository
|
||||||
from services import PrepareReleaseService, TagAndPushReleaseService
|
from services import PrepareReleaseService, TagAndPushReleaseService
|
||||||
from domain import ReleaseType, Version
|
|
||||||
|
|
||||||
def create_release_mixin_config(config_file, main_branch) -> dict:
|
def create_release_mixin_config(config_file, main_branch) -> dict:
|
||||||
config = {}
|
config = {}
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
from pathlib import Path
|
from infrastructure import ReleaseRepository, GitApi
|
||||||
from infrastructure import VersionRepository, ReleaseRepository, GitApi
|
from domain import Version, Release
|
||||||
from domain import Version, ReleaseType, Release
|
|
||||||
|
|
||||||
class PrepareReleaseService():
|
class PrepareReleaseService():
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue