Lint fixes: false -> False, missing imports, Index list, not map iter

Change-Id: Iff4123a49c8dbcfc405612c0663d5c7d0f549748
diff --git a/pySim-prog.py b/pySim-prog.py
index f2d3676..942cfb0 100755
--- a/pySim-prog.py
+++ b/pySim-prog.py
@@ -647,13 +647,13 @@
 		if opts.read_iccid:
 			if opts.dry_run:
 				# Connect transport
-				card_handler.get(false)
+				card_handler.get(False)
 			(res,_) = scc.read_binary(['3f00', '2fe2'], length=10)
 			iccid = dec_iccid(res)
 		elif opts.read_imsi:
 			if opts.dry_run:
 				# Connect transport
-				card_handler.get(false)
+				card_handler.get(False)
 			(res,_) = scc.read_binary(EF['IMSI'])
 			imsi = swap_nibbles(res)[3:]
 		else: