From fd5b2b7febdfdaf8f9525c077ae65e2be806c5b1 Mon Sep 17 00:00:00 2001 From: QualiaRain <44004657+QualiaRain@users.noreply.github.com> Date: Fri, 12 Jun 2026 05:44:55 -0400 Subject: [PATCH] lint: fix RUF013 implicit Optional in cli/process.py Result.__init__ Co-Authored-By: Claude --- cli/process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/process.py b/cli/process.py index 4c5fa7f90..3852c3287 100644 --- a/cli/process.py +++ b/cli/process.py @@ -21,7 +21,7 @@ all_images_by_type = {} class Result(): - def __init__(self, typ: str, fn: str, tag: str | None = None, requested: list = None): + def __init__(self, typ: str, fn: str, tag: str | None = None, requested: list | None = None): self.type = typ self.input = fn self.output = ''