Skip to content

Commit

Permalink
[ServiceName] remove what looks like dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
Huevos committed Oct 9, 2023
1 parent c4bfd05 commit 3071837
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lib/python/Components/Converter/ServiceName.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,11 @@ class ServiceName(Converter):
def __init__(self, type):
Converter.__init__(self, type)
self.epgQuery = eEPGCache.getInstance().lookupEventTime
self.mode = ""
self.parts = type.split(",")
if len(self.parts) > 1:
self.type = self.FORMAT_STRING
self.separatorChar = self.parts[0]
else:
if ';' in type:
type, self.mode = type.split(';')
if type == "Provider":
self.type = self.PROVIDER
elif type == "Reference":
Expand Down

0 comments on commit 3071837

Please sign in to comment.