Removed further Optional double imports
Some checks failed
Ruff (Python code sniffer) / codesniffer-ruff (push) Has been cancelled
ShellCheck / codesniffer-shellcheck (push) Has been cancelled
Mark stable commit / test-unit (push) Has been cancelled
Mark stable commit / test-integration (push) Has been cancelled
Mark stable commit / test-env-virtual (push) Has been cancelled
Mark stable commit / test-env-nix (push) Has been cancelled
Mark stable commit / test-e2e (push) Has been cancelled
Mark stable commit / test-virgin-user (push) Has been cancelled
Mark stable commit / test-virgin-root (push) Has been cancelled
Mark stable commit / codesniffer-shellcheck (push) Has been cancelled
Mark stable commit / codesniffer-ruff (push) Has been cancelled
Mark stable commit / mark-stable (push) Has been cancelled

This commit is contained in:
Kevin Veen-Birkenbach
2025-12-13 13:36:11 +01:00
parent 8ead3472dd
commit 6ccc1c1490
4 changed files with 0 additions and 6 deletions

View File

@@ -1,9 +1,7 @@
from __future__ import annotations from __future__ import annotations
from typing import Optional from typing import Optional
import os import os
import sys import sys
from typing import Optional
from pkgmgr.actions.branch import close_branch from pkgmgr.actions.branch import close_branch
from pkgmgr.core.git import get_current_branch, GitError from pkgmgr.core.git import get_current_branch, GitError

View File

@@ -1,5 +1,4 @@
from __future__ import annotations from __future__ import annotations
from typing import Optional
import os import os
import sys import sys

View File

@@ -1,5 +1,4 @@
from __future__ import annotations from __future__ import annotations
from typing import Optional
import os import os
import sys import sys

View File

@@ -1,5 +1,3 @@
from typing import Optional
# pkgmgr/run_command.py
import subprocess import subprocess
import sys import sys
from typing import List, Optional, Union from typing import List, Optional, Union