Files
typeshed/stubs/playsound/playsound.pyi
Alex Waygood a9b4fa0a32 Fix some stubtest complaints before they happen (#9585)
Add missing objects to various stubs
2023-01-24 21:45:31 +00:00

9 lines
170 B
Python

import logging
import pathlib
logger: logging.Logger
class PlaysoundException(Exception): ...
def playsound(sound: str | pathlib.Path, block: bool = ...) -> None: ...