From 59de7d9e6173ed96955e4c2f11470ff5cb5a8369 Mon Sep 17 00:00:00 2001 From: Jakub Wilk Date: Fri, 12 Jan 2024 21:52:50 +0100 Subject: [PATCH] test/cmark.py: avoid star imports This makes static analysis of the code easier. --- test/cmark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cmark.py b/test/cmark.py index 38d2f599c..dca6d291d 100644 --- a/test/cmark.py +++ b/test/cmark.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- from ctypes import CDLL, c_char_p, c_size_t, c_int, c_void_p -from subprocess import * +from subprocess import Popen, PIPE import platform import os