From 631e1b9b3cd470f55336fb9a45f3e019ce10e991 Mon Sep 17 00:00:00 2001 From: loathingKernel <142770+loathingKernel@users.noreply.github.com> Date: Mon, 22 Jan 2024 00:38:09 +0200 Subject: [PATCH] Runners: disable some pylint checks for vdf --- rare/utils/proton.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rare/utils/proton.py b/rare/utils/proton.py index c54e6d42..717a8f14 100644 --- a/rare/utils/proton.py +++ b/rare/utils/proton.py @@ -5,7 +5,8 @@ from logging import getLogger from typing import Optional, Union, List, Dict if pf.system() in {"Linux", "FreeBSD"}: - import vdf + # noinspection PyUnresolvedReferences + import vdf # pylint: disable=E0401 logger = getLogger("Proton")