Skip to content

Commit

Permalink
String literal typing symbols.
Browse files Browse the repository at this point in the history
  • Loading branch information
junkmd committed Dec 20, 2024
1 parent 4ddab18 commit b7ad0fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions comtypes/_comobject.py
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ def __make_interface_pointer(self, itf: Type[IUnknown]) -> None:
self.__make_disppropentry(itf, finder, m)

def __make_dispmthentry(
self, itf: Type[IUnknown], finder: _MethodFinder, m: _DispMemberSpec
self, itf: Type[IUnknown], finder: _MethodFinder, m: "_DispMemberSpec"
) -> None:
_, mthname, idlflags, restype, argspec = m
if "propget" in idlflags:
Expand All @@ -587,7 +587,7 @@ def __make_dispmthentry(
self.__make_dispentry(finder, itf, mthname, idlflags, argspec, invkind)

def __make_disppropentry(
self, itf: Type[IUnknown], finder: _MethodFinder, m: _DispMemberSpec
self, itf: Type[IUnknown], finder: _MethodFinder, m: "_DispMemberSpec"
) -> None:
_, mthname, idlflags, restype, argspec = m
# DISPPROPERTY have implicit "out"
Expand Down

0 comments on commit b7ad0fd

Please sign in to comment.