neels has uploaded this change for review.

View Change

pylint: ota.py: fix E0606 possibly-used-before-assignment

************* Module pySim.ota
pySim/ota.py:430:24: E0606: Possibly using variable 'cpl' before assignment (possibly-used-before-assignment)

Change-Id: Ibbae851e458bbe7426a788b0784d553753c1056f
---
M pySim/ota.py
1 file changed, 1 insertion(+), 0 deletions(-)

git pull ssh://gerrit.osmocom.org:29418/pysim refs/changes/49/39749/1
diff --git a/pySim/ota.py b/pySim/ota.py
index 8d7e0fd..2d1c8d1 100644
--- a/pySim/ota.py
+++ b/pySim/ota.py
@@ -410,6 +410,7 @@
ciph = encoded[2+8:]
envelope_data = otak.crypt.decrypt(ciph)
else:
+ cpl = None # FIXME this line was just added to silence pylint possibly-used-before-assignment
part_head = encoded[:8]
envelope_data = encoded[8:]


To view, visit change 39749. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: newchange
Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: Ibbae851e458bbe7426a788b0784d553753c1056f
Gerrit-Change-Number: 39749
Gerrit-PatchSet: 1
Gerrit-Owner: neels <nhofmeyr@sysmocom.de>