From aaa3bff06a1a05622f6c15ba54882ba73bf3200d Mon Sep 17 00:00:00 2001 From: burgholzer Date: Mon, 12 Feb 2024 12:13:20 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20do=20not=20track=20coverage=20fo?= =?UTF-8?q?r=20windows=20specific=20workaround?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: burgholzer --- src/mqt/core/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mqt/core/__init__.py b/src/mqt/core/__init__.py index e1e7b6b3e..3b633c181 100644 --- a/src/mqt/core/__init__.py +++ b/src/mqt/core/__init__.py @@ -5,7 +5,7 @@ import sys # under Windows, make sure to add the appropriate DLL directory to the PATH -if sys.platform == "win32": +if sys.platform == "win32": # pragma: no cover import os import sysconfig from pathlib import Path