(path)
| 1339 | } |
| 1340 | ''') |
| 1341 | def fs_read(path): |
| 1342 | try: |
| 1343 | with open(path) as f: |
| 1344 | return f.read() |
| 1345 | except Exception: |
| 1346 | return |
| 1347 | def fs_remove(path): |
| 1348 | try: |
| 1349 | os.remove(path) |
no outgoing calls
no test coverage detected
searching dependent graphs…