Fix whitespace

This commit is contained in:
croneter 2021-09-30 13:31:23 +02:00
parent 2bc98f9ff1
commit bdc98d0352
1 changed files with 3 additions and 0 deletions

View File

@ -17,12 +17,15 @@ METADATA_PROVIDERS = (('imdb', utils.REGEX_IMDB),
('tvdb', utils.REGEX_TVDB), ('tvdb', utils.REGEX_TVDB),
('tmdb', utils.REGEX_TMDB), ('tmdb', utils.REGEX_TMDB),
('anidb', utils.REGEX_ANIDB)) ('anidb', utils.REGEX_ANIDB))
class Base(object): class Base(object):
""" """
Processes a Plex media server's XML response Processes a Plex media server's XML response
xml: xml.etree.ElementTree element xml: xml.etree.ElementTree element
""" """
def __init__(self, xml): def __init__(self, xml):
self.xml = xml self.xml = xml
# which media part in the XML response shall we look at if several # which media part in the XML response shall we look at if several