(filename, data="")
| 197 | |
| 198 | @staticmethod |
| 199 | def appendFile(filename, data=""): |
| 200 | with open(filename, "ab") as f: |
| 201 | f.write(data) |
| 202 | |
| 203 | @staticmethod |
| 204 | def fileExists(filename): |
nothing calls this directly
no outgoing calls
no test coverage detected