Skip to content

Commit

Permalink
Post-merge fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam committed Nov 2, 2023
1 parent 4889616 commit 521ba2b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 1 addition & 3 deletions com/win32com/makegw/makegw.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,9 +420,7 @@ def _write_gw_cpp(f, interface):
// ---------------------------------------------------
//
// Gateway Implementation
""".format(
name=name, gname=gname, base_name=base_name
)
"""
)

for method in interface.methods:
Expand Down
4 changes: 2 additions & 2 deletions isapi/threaded_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ def HandleDispatchError(self, ecb):
bold = list.pop()
print(
"<PRE>{}<B>{}</B></PRE>".format(
cgi.escape("".join(list[:-1])),
cgi.escape(list[-1]),
cgi.escape("".join(list)),
cgi.escape(bold),
),
file=ecb,
)
Expand Down
3 changes: 2 additions & 1 deletion mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ ignore_missing_imports = True

; verstamp is installed from win32verstamp.py called in setup.py
; Most of win32com re-exports win32comext
; Test is a local untyped module in win32comext.axdebug
; Not sure where the rest of modules/packages come from
[mypy-CallTipWindow,dde,pywin32_system32,verstamp,win32com.*]
[mypy-verstamp,win32com.*,Test,CallTipWindow,dde,pywin32_system32,]
ignore_missing_imports = True

0 comments on commit 521ba2b

Please sign in to comment.