Skip to content

Commit

Permalink
Update import orderings.
Browse files Browse the repository at this point in the history
  • Loading branch information
junkmd committed Nov 2, 2024
1 parent 8390017 commit 3230f7a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions comtypes/_post_coinit/unknwn.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
# https://learn.microsoft.com/en-us/windows/win32/api/unknwn/

from ctypes import byref, c_ulong, c_void_p, HRESULT, POINTER

import logging
import sys
from ctypes import HRESULT, POINTER, byref, c_ulong, c_void_p
from typing import ClassVar, TYPE_CHECKING, TypeVar
from typing import Optional
from typing import List, Type

from comtypes._post_coinit import _cominterface_meta_patcher as _meta_patch
from comtypes import GUID, _ole32_nohresult, com_interface_registry
from comtypes._idl_stuff import STDMETHOD
from comtypes._memberspec import ComMemberGenerator, DispMemberGenerator
from comtypes._memberspec import _ComMemberSpec, _DispMemberSpec
from comtypes._post_coinit import _cominterface_meta_patcher as _meta_patch
from comtypes._py_instance_method import instancemethod


logger = logging.getLogger(__name__)


Expand Down

0 comments on commit 3230f7a

Please sign in to comment.