()
| 16 | |
| 17 | |
| 18 | def get_readme(): |
| 19 | try: |
| 20 | with open("README.md", encoding="utf-8") as readme_file: |
| 21 | text = readme_file.read() |
| 22 | return text |
| 23 | except FileNotFoundError: |
| 24 | return "" |
| 25 | |
| 26 | def replace_require_with_json(code: str, FileTypes) -> str: |
| 27 | """ |
no outgoing calls
no test coverage detected