mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 14:41:43 +00:00
aedi: ignore function call type check for mypy
This commit is contained in:
parent
c1828335d2
commit
039d561e97
1 changed files with 2 additions and 2 deletions
|
@ -172,8 +172,8 @@ class ZDoomVulkanBaseTarget(ZDoomBaseTarget):
|
|||
dst_path /= molten_lib
|
||||
|
||||
if not dst_path.exists():
|
||||
copy_func = state.xcode and os.symlink or shutil.copy
|
||||
copy_func(src_path, dst_path)
|
||||
copy_func = os.symlink if state.xcode else shutil.copy
|
||||
copy_func(src_path, dst_path) # type: ignore
|
||||
|
||||
super().post_build(state)
|
||||
|
||||
|
|
Loading…
Reference in a new issue