Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion comtypes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def CoUninitialize():
################################################################
# IUnknown, the root of all evil...
from comtypes._post_coinit import _shutdown
from comtypes._post_coinit._unknwn import IUnknown # noqa
from comtypes._post_coinit.unknwn import IUnknown # noqa

atexit.register(_shutdown)

Expand Down
2 changes: 1 addition & 1 deletion comtypes/_post_coinit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
when the package is initialized.
"""

from comtypes._post_coinit._unknwn import _shutdown # noqa
from comtypes._post_coinit.unknwn import _shutdown # noqa
Loading