mirror of
https://github.com/vladmandic/automatic
synced 2026-08-25 22:20:46 +02:00
lint: fix RUF013 implicit Optional in cli/process.py Result.__init__
Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
+1
-1
@@ -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 = ''
|
||||
|
||||
Reference in New Issue
Block a user