(address)
| 1215 | main() |
| 1216 | |
| 1217 | def deleteAddressFromAddressBook(address): |
| 1218 | try: |
| 1219 | response = api.deleteAddressBookEntry(address) |
| 1220 | if "API Error" in response: |
| 1221 | return getAPIErrorCode(response) |
| 1222 | except: |
| 1223 | print '\n Connection Error\n' |
| 1224 | usrPrompt = 0 |
| 1225 | main() |
| 1226 | |
| 1227 | def getAPIErrorCode(response): |
| 1228 | if "API Error" in response: |
no test coverage detected