librespot-python/librespot/standard/Closeable.py

7 lines
135 B
Python
Raw Normal View History

2021-02-24 00:46:59 +01:00
from librespot.standard.AutoCloseable import AutoCloseable
class Closeable(AutoCloseable):
def close(self) -> None:
pass