Update app.py
Browse files
app.py
CHANGED
|
@@ -26,9 +26,9 @@ def is_installer_google(dict_of_device_data_to_save):
|
|
| 26 |
|
| 27 |
def is_in_emulator(dict_of_device_data_to_save):
|
| 28 |
if dict_of_device_data_to_save["emulator"] == True:
|
| 29 |
-
return False
|
| 30 |
-
else:
|
| 31 |
return True
|
|
|
|
|
|
|
| 32 |
|
| 33 |
def do_certs_match(previous_entries_for_device,dict_of_device_data_to_save):
|
| 34 |
for entry in previous_entries_for_device:
|
|
|
|
| 26 |
|
| 27 |
def is_in_emulator(dict_of_device_data_to_save):
|
| 28 |
if dict_of_device_data_to_save["emulator"] == True:
|
|
|
|
|
|
|
| 29 |
return True
|
| 30 |
+
else:
|
| 31 |
+
return False
|
| 32 |
|
| 33 |
def do_certs_match(previous_entries_for_device,dict_of_device_data_to_save):
|
| 34 |
for entry in previous_entries_for_device:
|