From 2a0f55e0b52517c6b4936eb49a311fa9348dd46f Mon Sep 17 00:00:00 2001 From: awsr <43862868+awsr@users.noreply.github.com> Date: Sun, 17 May 2026 11:14:55 -0700 Subject: [PATCH] Additional minor typing --- modules/extra_networks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/extra_networks.py b/modules/extra_networks.py index f8bc093f6..b400e6050 100644 --- a/modules/extra_networks.py +++ b/modules/extra_networks.py @@ -35,7 +35,7 @@ class ExtraNetworkParams: def __init__(self, items: list[str] | None = None): self.items: list[str] = items or [] self.positional: list[str] = [] - self.named = {} + self.named: dict[str, str] = {} for item in self.items: parts = item.split('=', 2) if isinstance(item, str) else [item] if len(parts) == 2: