Skip to content

Commit

Permalink
PEP8 double aggressive E20 and E211
Browse files Browse the repository at this point in the history
  • Loading branch information
enigma2-plugins python bot committed Feb 17, 2024
1 parent 9a4a69a commit 9b4c86b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mediathekviewweb/src/mediathekviewweb.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def mvw_api(self, query="", channel="", page=1, size=100, index="0"):
if js.get("url_video_low"):
urls.append(("Niedrig", js.get("url_video_low") + "##" + sub))
img = js.get("url_website", "")
liste.append(("MVW_PLAY", ensure_str("[%s] %s - %s" % (js.get("channel", ""), js.get("topic", ""), js.get("title", ""))), urls, ensure_str("%s%s\n%s" % ("UT\n" if sub else "" , timestamp, js.get("description", ""))), img, duration, ""))
liste.append(("MVW_PLAY", ensure_str("[%s] %s - %s" % (js.get("channel", ""), js.get("topic", ""), js.get("title", ""))), urls, ensure_str("%s%s\n%s" % ("UT\n" if sub else "", timestamp, js.get("description", ""))), img, duration, ""))
if totalResults > (page * size):
liste.append(("MVW_API", "Nextpage", (ensure_str(query), ensure_str(channel), (page + 1), size), "", PLUGINPATH + "/img/" + "nextpage.png", "", ""))
if liste:
Expand Down

0 comments on commit 9b4c86b

Please sign in to comment.