mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-12-17 01:52:59 +08:00
Fix type annotation syntax in MotionEncoder_tc __init__ (#10186)
## Summary Fixed incorrect type hint syntax in `MotionEncoder_tc.__init__()` parameter list. ## Changes - Line 647: Changed `num_heads=int` to `num_heads: int` - This corrects the parameter annotation from a default value assignment to proper type hint syntax ## Details The parameter was using assignment syntax (`=`) instead of type annotation syntax (`:`), which would incorrectly set the default value to the `int` class itself rather than annotating the expected type.
This commit is contained in:
parent
4614ee09ca
commit
93d859cfaa
@ -903,7 +903,7 @@ class MotionEncoder_tc(nn.Module):
|
|||||||
def __init__(self,
|
def __init__(self,
|
||||||
in_dim: int,
|
in_dim: int,
|
||||||
hidden_dim: int,
|
hidden_dim: int,
|
||||||
num_heads=int,
|
num_heads: int,
|
||||||
need_global=True,
|
need_global=True,
|
||||||
dtype=None,
|
dtype=None,
|
||||||
device=None,
|
device=None,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user