mirror of
https://github.com/morpheus65535/bazarr
synced 2025-01-02 13:04:50 +00:00
7 lines
194 B
Python
7 lines
194 B
Python
from plex import Plex
|
|
from plex.objects.core.base import DescriptorMixin
|
|
|
|
|
|
class ScrobbleMixin(DescriptorMixin):
|
|
def scrobble(self):
|
|
return Plex['library'].scrobble(self.rating_key)
|