From 7a3077c38b860fb2d258d13d8b1fb0d99c00b27f Mon Sep 17 00:00:00 2001 From: Yohei Yamamoto Date: Sat, 17 Jan 2026 16:49:33 +0900 Subject: [PATCH] Fix typo in ops.py --- comfy/ops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy/ops.py b/comfy/ops.py index 415c39e92..2fecf86ea 100644 --- a/comfy/ops.py +++ b/comfy/ops.py @@ -73,7 +73,7 @@ def cast_to_input(weight, input, non_blocking=False, copy=True): def cast_bias_weight(s, input=None, dtype=None, device=None, bias_dtype=None, offloadable=False): - # NOTE: offloadable=False is a a legacy and if you are a custom node author reading this please pass + # NOTE: offloadable=False is a legacy and if you are a custom node author reading this please pass # offloadable=True and call uncast_bias_weight() after your last usage of the weight/bias. This # will add async-offload support to your cast and improve performance. if input is not None: