Skip to content

Commit

Permalink
Update type comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam committed Oct 30, 2024
1 parent 646fe3d commit eadbdc7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ ignore_missing_imports = True

; Test is a local untyped module in win32comext.axdebug
; pywin32_system32 is an empty module created in setup.py to store dlls
[Test,pywin32_system32]
[mypy-Test,pywin32_system32]
ignore_missing_imports = True
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -926,7 +926,7 @@ class my_compiler(MSVCCompiler):
# worse! This can probably go away once we kill the VS project files
# though, as we can just specify the lowercase name in the module def.
_cpp_extensions = MSVCCompiler._cpp_extensions + [".CPP"]
src_extensions = MSVCCompiler.src_extensions + [".CPP"]
src_extensions = MSVCCompiler.src_extensions + [".CPP"] # type: ignore[operator] # TODO: Fix in typeshed

def link(
self,
Expand Down

0 comments on commit eadbdc7

Please sign in to comment.