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 infrastructure_api import FileHandler, SystemAPI, GitApi
|
||||
from pathlib import Path
|
||||
from infrastructure_api import FileHandler
|
||||
|
||||
class VersionRepository():
|
||||
|
||||
|
|
|
@ -4,7 +4,6 @@ from ddadevops import execute
|
|||
from ddadevops import gopass_field_from_path, gopass_password_from_path
|
||||
from infrastructure import GitApi, ReleaseRepository, ReleaseTypeRepository, VersionRepository
|
||||
from services import PrepareReleaseService, TagAndPushReleaseService
|
||||
from domain import ReleaseType, Version
|
||||
|
||||
def create_release_mixin_config(config_file, main_branch) -> dict:
|
||||
config = {}
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
from pathlib import Path
|
||||
from infrastructure import VersionRepository, ReleaseRepository, GitApi
|
||||
from domain import Version, ReleaseType, Release
|
||||
from infrastructure import ReleaseRepository, GitApi
|
||||
from domain import Version, Release
|
||||
|
||||
class PrepareReleaseService():
|
||||
|
||||
|
|
Loading…
Reference in a new issue