fix stubgen and add pyi files to package

This commit is contained in:
2021-04-03 22:03:50 -07:00
parent 6e30ba871c
commit 190bb58367
3 changed files with 7 additions and 1 deletions

View File

@ -40,7 +40,7 @@ if __name__ == "__main__":
for mod in modules:
new_mod = mod.replace(prefix, '')
contents.replace(mod, new_mod)
contents = contents.replace(mod, new_mod)
# write out to the new location
py_module = ext_module.replace(prefix, '')