diff --git a/src/pkgmgr/actions/release/workflow.py b/src/pkgmgr/actions/release/workflow.py index c3159a6..87bcdcb 100644 --- a/src/pkgmgr/actions/release/workflow.py +++ b/src/pkgmgr/actions/release/workflow.py @@ -1,9 +1,7 @@ from __future__ import annotations from typing import Optional - import os import sys -from typing import Optional from pkgmgr.actions.branch import close_branch from pkgmgr.core.git import get_current_branch, GitError diff --git a/src/pkgmgr/cli/commands/changelog.py b/src/pkgmgr/cli/commands/changelog.py index 3b5c477..2c16222 100644 --- a/src/pkgmgr/cli/commands/changelog.py +++ b/src/pkgmgr/cli/commands/changelog.py @@ -1,5 +1,4 @@ from __future__ import annotations -from typing import Optional import os import sys diff --git a/src/pkgmgr/cli/commands/version.py b/src/pkgmgr/cli/commands/version.py index 490ae3e..cdf05c0 100644 --- a/src/pkgmgr/cli/commands/version.py +++ b/src/pkgmgr/cli/commands/version.py @@ -1,5 +1,4 @@ from __future__ import annotations -from typing import Optional import os import sys diff --git a/src/pkgmgr/core/command/run.py b/src/pkgmgr/core/command/run.py index 04ec114..b7ba5e1 100644 --- a/src/pkgmgr/core/command/run.py +++ b/src/pkgmgr/core/command/run.py @@ -1,5 +1,3 @@ -from typing import Optional -# pkgmgr/run_command.py import subprocess import sys from typing import List, Optional, Union