From e7de8e8b6efcebb9e77478ff089e32b087ca2ffd Mon Sep 17 00:00:00 2001 From: Chin-Yun Yu Date: Thu, 18 Apr 2024 18:34:29 +0800 Subject: [PATCH] fix linter --- torchlpc/core.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/torchlpc/core.py b/torchlpc/core.py index 4ef53c4..0fc1ef6 100644 --- a/torchlpc/core.py +++ b/torchlpc/core.py @@ -6,10 +6,10 @@ from numba import jit, njit, prange, cuda, float32, float64, complex64, complex128 -lpc_cuda_kernel_float32: Callable -lpc_cuda_kernel_float64: Callable -lpc_cuda_kernel_complex64: Callable -lpc_cuda_kernel_complex128: Callable +lpc_cuda_kernel_float32: Callable = None +lpc_cuda_kernel_float64: Callable = None +lpc_cuda_kernel_complex64: Callable = None +lpc_cuda_kernel_complex128: Callable = None for t in ["float32", "float64", "complex64", "complex128"]: