From 737b937ec9ebab42c3e8045522d012d8bcf25e91 Mon Sep 17 00:00:00 2001 From: Guillermo Rodriguez Date: Wed, 18 Jan 2023 07:47:02 -0300 Subject: [PATCH] OMG finally found the issue, missing comma on config attr list --- skynet/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skynet/constants.py b/skynet/constants.py index cdd386d..1478269 100644 --- a/skynet/constants.py +++ b/skynet/constants.py @@ -139,6 +139,6 @@ CONFIG_ATTRS = [ 'height', 'seed', 'guidance', - 'strength' + 'strength', 'upscaler' ]