Skip to content

Commit

Permalink
minor type fix
Browse files Browse the repository at this point in the history
  • Loading branch information
blaisewf authored Dec 3, 2024
1 parent 408e006 commit eff39c7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rvc/lib/algorithm/attentions.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,10 +201,10 @@ class FFN(torch.nn.Module):

def __init__(
self,
in_channels=int,
out_channels=int,
filter_channels=int,
kernel_size=int,
in_channels: int,
out_channels: int,
filter_channels: int,
kernel_size: int,
p_dropout: float = 0.0,
activation: str = None,
causal: bool = False,
Expand Down

0 comments on commit eff39c7

Please sign in to comment.