mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-26 13:43:52 +08:00
enable flake8 E231: missing whitespace after comma
This commit is contained in:
@@ -22,7 +22,7 @@ def get_imei(slot):
|
||||
if slot not in ("0", "1"):
|
||||
raise ValueError("SIM slot must be 0 or 1")
|
||||
|
||||
ret = parse_service_call_string(service_call(["iphonesubinfo", "3" ,"i32", str(slot)]))
|
||||
ret = parse_service_call_string(service_call(["iphonesubinfo", "3" , "i32", str(slot)]))
|
||||
if not ret:
|
||||
# allow non android to be identified differently
|
||||
ret = "%015d" % random.randint(0, 1 << 32)
|
||||
|
||||
Reference in New Issue
Block a user