(self)
| 45 | self.unregistered = 0 |
| 46 | |
| 47 | def __del__(self): |
| 48 | try: |
| 49 | if self.unregistered == 0: |
| 50 | self.unregister() |
| 51 | except: |
| 52 | print("Error - Client could not be destroyed") |
| 53 | |
| 54 | def getFilepath(self, file_path): |
| 55 | # Gets arguments from Command-Line and assigns to instance of client |
nothing calls this directly
no test coverage detected