From 2c8dca14f55396a171a9213bdd0d3bd73640a4fe Mon Sep 17 00:00:00 2001 From: junkmd Date: Mon, 3 Feb 2025 08:47:31 +0900 Subject: [PATCH] Format the import block in `server/automation.py`. --- comtypes/server/automation.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/comtypes/server/automation.py b/comtypes/server/automation.py index e38c73a2e..e547abd59 100644 --- a/comtypes/server/automation.py +++ b/comtypes/server/automation.py @@ -1,10 +1,9 @@ import logging - from ctypes import * -from comtypes.hresult import * from comtypes import COMObject, IUnknown from comtypes.automation import IDispatch, IEnumVARIANT +from comtypes.hresult import * logger = logging.getLogger(__name__)