From 3ff8bd95b6d98dcc77f61c2c54b5241ccd200b9d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Dec 2024 13:27:31 +0000 Subject: [PATCH] chore(format): run black on main --- rvc/lib/algorithm/residuals.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/rvc/lib/algorithm/residuals.py b/rvc/lib/algorithm/residuals.py index f970657c..7483d298 100644 --- a/rvc/lib/algorithm/residuals.py +++ b/rvc/lib/algorithm/residuals.py @@ -49,9 +49,7 @@ def __init__( self.convs2 = self._create_convs(channels, kernel_size, [1] * len(dilations)) @staticmethod - def _create_convs( - channels: int, kernel_size: int, dilations: Tuple[int] - ): + def _create_convs(channels: int, kernel_size: int, dilations: Tuple[int]): """ Creates a list of 1D convolutional layers with specified dilations.