Unverified Commit b71b5ee5 authored by Tomás Osório's avatar Tomás Osório Committed by GitHub
Browse files

fix mypy error (#590)

parent b4998409
...@@ -339,7 +339,7 @@ def get_sox_bool(i: int = 0) -> Any: ...@@ -339,7 +339,7 @@ def get_sox_bool(i: int = 0) -> Any:
return _torch_sox.sox_bool(i) return _torch_sox.sox_bool(i)
_SOX_INITIALIZED = False _SOX_INITIALIZED: Optional[bool] = False
# This variable has a micro lifecycle. (False -> True -> None) # This variable has a micro lifecycle. (False -> True -> None)
# False: Not initialized # False: Not initialized
# True: Initialized # True: Initialized
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment