Skip to content

Commit

Permalink
PEP8 double aggressive W291 ~ W293 and W391
Browse files Browse the repository at this point in the history
  • Loading branch information
openvix-bot committed Mar 14, 2024
1 parent 751e63f commit 4aa69a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/python/Components/Converter/PliExtraInfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,13 @@ def createCurrentCaidLabel(info, currentCaid=None):
stateDecoding = dvbCIUI.getDecodingState(slot)
if stateDecoding == 2:
decodingCiSlot = slot

if not pathExists("/tmp/ecm.info") and decodingCiSlot == -1:
return "FTA"

if decodingCiSlot > -1 and not pathExists("/tmp/ecm.info"):
return "CI%d" % (decodingCiSlot)

for caid_entry in caid_data:
if int(caid_entry[0], 16) <= int(current_caid, 16) <= int(caid_entry[1], 16):
res = caid_entry[4]
Expand Down

0 comments on commit 4aa69a5

Please sign in to comment.