From f4ef25457a48483b68932d652c7b7b2e6d8eb5a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ju=CC=88rgen=20Hock?= Date: Fri, 29 Mar 2024 15:32:49 +0100 Subject: [PATCH] Fix pylint check --- src/sandbox/synth.py | 2 ++ src/tests/test_remucs.py | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/sandbox/synth.py b/src/sandbox/synth.py index 5055969..8a95a64 100644 --- a/src/sandbox/synth.py +++ b/src/sandbox/synth.py @@ -1,3 +1,5 @@ +# pylint: disable=import-error + from os import PathLike from pathlib import Path from subprocess import run diff --git a/src/tests/test_remucs.py b/src/tests/test_remucs.py index 89ac0be..c9df2d9 100644 --- a/src/tests/test_remucs.py +++ b/src/tests/test_remucs.py @@ -1,8 +1,9 @@ +# pylint: disable=import-error + from dataclasses import dataclass from pathlib import Path from typing import List -# pylint: disable=import-error from test_utils import find, freqs, isless, issame, time, wave import numpy