Skip to content

Commit

Permalink
poc
Browse files Browse the repository at this point in the history
  • Loading branch information
junkmd committed Nov 4, 2024
1 parent d11bd11 commit a1585d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion comtypes/_post_coinit/unknwn.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class _cominterface_meta(type):
def __new__(cls, name, bases, namespace):
methods = namespace.pop("_methods_", None)
dispmethods = namespace.pop("_disp_methods_", None)
self = type.__new__(cls, name, bases, namespace)
self = super().__new__(cls, name, bases, namespace)

if methods is not None:
self._methods_ = methods
Expand Down

0 comments on commit a1585d2

Please sign in to comment.