(device)
| 41 | |
| 42 | @staticmethod |
| 43 | def instance(device): |
| 44 | if not Driver.__instance: |
| 45 | Driver.__instance = Driver(device) |
| 46 | return Driver.__instance |
| 47 | |
| 48 | """Helper class to execute shell commands on an Android device.""" |
| 49 | def __init__(self, device=None): |
no test coverage detected