mirror of
https://github.com/morpheus65535/bazarr.git
synced 2026-04-23 23:59:46 -04:00
8 lines
194 B
Python
8 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)
|