Compare commits

...

2 Commits

Author SHA1 Message Date
Kevin Veen-Birkenbach
6ccc1c1490 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
2025-12-13 13:36:11 +01:00
Kevin Veen-Birkenbach
8ead3472dd Removed double import 2025-12-13 13:33:34 +01:00
5 changed files with 0 additions and 7 deletions

View File

@@ -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

View File

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

View File

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

View File

@@ -1,4 +1,3 @@
from typing import Optional
import os
import shutil
from typing import Optional, List, Dict, Any

View File

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