(filename, data="")
| 192 | |
| 193 | @staticmethod |
| 194 | def writeFile(filename, data=""): |
| 195 | with open(filename, "wb") as f: |
| 196 | f.write(data) |
| 197 | |
| 198 | @staticmethod |
| 199 | def appendFile(filename, data=""): |
nothing calls this directly
no outgoing calls
no test coverage detected