refactor: replace type ignores with inline fallbacks

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
0xallam
2026-01-10 14:19:19 -08:00
committed by Ahmed Allam
parent b80bb165b9
commit 498032e279
5 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -122,7 +122,7 @@ class DockerRuntime(AbstractRuntime):
for attempt in range(max_retries):
try:
self._verify_image_available(Config.get("strix_image")) # type: ignore[arg-type]
self._verify_image_available(Config.get("strix_image") or "")
try:
existing_container = self.client.containers.get(container_name)