From 6cae9e2d556d2ceaa6a5d5aa85f516257ab44734 Mon Sep 17 00:00:00 2001 From: Chris Hennes Date: Fri, 21 Aug 2026 14:07:43 -0500 Subject: [PATCH] Fix unused imports (cherry picked from commit 3215cbc0dbba49df23ff7ffc9d1f55ae78eb1467) --- AddonManagerTest/app/test_freecad_interface.py | 2 +- AddonManagerTest/app/test_utilities.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/AddonManagerTest/app/test_freecad_interface.py b/AddonManagerTest/app/test_freecad_interface.py index a8646062..6406abc1 100644 --- a/AddonManagerTest/app/test_freecad_interface.py +++ b/AddonManagerTest/app/test_freecad_interface.py @@ -26,7 +26,7 @@ import sys import tempfile import unittest -from unittest.mock import patch, MagicMock +import unittest.mock # pylint: disable=protected-access,import-outside-toplevel diff --git a/AddonManagerTest/app/test_utilities.py b/AddonManagerTest/app/test_utilities.py index 5b3c18ce..ee62abde 100644 --- a/AddonManagerTest/app/test_utilities.py +++ b/AddonManagerTest/app/test_utilities.py @@ -55,7 +55,6 @@ run_interruptable_subprocess, run_monitored_subprocess, ProcessInterrupted, - SubprocessTimeout, )