Remove http shortcut from client.py __getitem__

This commit is contained in:
TrueTechy 2019-09-04 00:08:41 +01:00
commit bf2b4e8c32
2 changed files with 1 additions and 6 deletions

View file

@ -88,9 +88,6 @@ class JellyfinClient(object):
if key.startswith('config'):
return self.config[key.replace('config/', "", 1)] if "/" in key else self.config
elif key.startswith('http'):
return self.http.request
elif key.startswith('websocket'):
return self.wsc.__shortcuts__(key.replace('websocket/', "", 1))