Add stubs for playsound (#6881)

This commit is contained in:
ThePhilgrim
2022-01-10 21:23:28 +01:00
committed by GitHub
parent 7d33ff330a
commit 7191d12e24
3 changed files with 7 additions and 0 deletions

View File

@@ -46,6 +46,7 @@
"stubs/prettytable",
"stubs/protobuf",
"stubs/google-cloud-ndb",
"stubs/playsound",
"stubs/psutil",
"stubs/psycopg2",
"stubs/Pygments",

View File

@@ -0,0 +1 @@
version = "1.3.*"

View File

@@ -0,0 +1,5 @@
import pathlib
class PlaysoundException(Exception): ...
def playsound(sound: str | pathlib.Path, block: bool = ...) -> None: ...