Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
from dataclasses import dataclass
from spotipy.serialise import SerialisableDataclass
@dataclass
class Disallows(SerialisableDataclass):
interrupting_playback: bool = False
pausing: bool = False
resuming: bool = False
seeking: bool = False
skipping_next: bool = False
skipping_prev: bool = False
toggling_repeat_context: bool = False
toggling_shuffle: bool = False
toggling_repeat_track: bool = False
transferring_playback: bool = False