lint: fix RUF013 implicit Optional in cli/process.py Result.__init__

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
QualiaRain
2026-06-12 05:44:55 -04:00
parent 584f2b84c4
commit fd5b2b7feb
+1 -1
View File
@@ -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 = ''