From e5268b61f35346c55cd852170b74563abfe5aace Mon Sep 17 00:00:00 2001 From: junkmd Date: Sat, 24 Jun 2023 12:59:03 +0900 Subject: [PATCH] fix import order --- comtypes/tools/typeannotator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comtypes/tools/typeannotator.py b/comtypes/tools/typeannotator.py index 9541b66df..372b5bda1 100644 --- a/comtypes/tools/typeannotator.py +++ b/comtypes/tools/typeannotator.py @@ -1,4 +1,5 @@ import abc +import io import keyword from typing import ( Any, @@ -13,7 +14,6 @@ TYPE_CHECKING, TypeVar, ) -import io from comtypes.tools import typedesc