(filepath)
| 6 | import sys |
| 7 | |
| 8 | def check(filepath): |
| 9 | if filepath.endswith(".py"): |
| 10 | content = open(filepath, "rb").read() |
| 11 | pattern = "\n\n\n".encode("ascii") |
| 12 | |
| 13 | if pattern in content: |
| 14 | index = content.find(pattern) |
| 15 | print(filepath, repr(content[index - 30:index + 30])) |
| 16 | |
| 17 | if __name__ == "__main__": |
| 18 | try: |
no test coverage detected
searching dependent graphs…