librespot-python/librespot/standard/Closeable.py
2021-02-25 08:07:17 +09:00

7 lines
135 B
Python

from librespot.standard.AutoCloseable import AutoCloseable
class Closeable(AutoCloseable):
def close(self) -> None:
pass