PEP8
This commit is contained in:
parent
1d277c26e1
commit
73403a8a7b
2 changed files with 11 additions and 8 deletions
|
@ -167,7 +167,7 @@ class Main():
|
|||
entrypoint.getVideoFiles(plexId, params)
|
||||
|
||||
else:
|
||||
entrypoint.doMainListing(content_type=params.get('content_type'))
|
||||
entrypoint.show_main_menu(content_type=params.get('content_type'))
|
||||
|
||||
@staticmethod
|
||||
def play():
|
||||
|
|
|
@ -131,7 +131,10 @@ def directory_item(label, path, folder=True):
|
|||
isFolder=folder)
|
||||
|
||||
|
||||
def doMainListing(content_type=None):
|
||||
def show_main_menu(content_type=None):
|
||||
"""
|
||||
Shows the main PKC menu listing with all libraries, Channel, settings, etc.
|
||||
"""
|
||||
LOG.debug('Do main listing with content_type: %s' % content_type)
|
||||
xbmcplugin.setContent(HANDLE, 'files')
|
||||
# Get emby nodes from the window props
|
||||
|
|
Loading…
Reference in a new issue