Skip to content

Commit

Permalink
修改错误
Browse files Browse the repository at this point in the history
  • Loading branch information
tonquer committed Dec 24, 2021
1 parent 6a8cb0a commit b1e6c04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
newData, status, backId, tick = info
f = open(saveName.get(backId), "wb+")
f.write(newData)
f.close
f.close()

# free ncnn, close thread
waifu2x.stop()
2 changes: 1 addition & 1 deletion waifu2x_vulkan/waifu2x_vulkan.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def getVersion() -> str: ...
def setDebug(bool) -> None: ...
def remove(backIds:List[int]) -> None: ...
def removeWaitProc(backIds:List[int]) -> None: ...
def load(block:bool) -> Union[None, Tuple]: ...
def load(block:int) -> Union[None, Tuple]: ...
def stop() -> None: ...

# eof

0 comments on commit b1e6c04

Please sign in to comment.