(pattern)
| 193 | |
| 194 | |
| 195 | def read_files(pattern): |
| 196 | for file in glob(pattern, recursive=True): |
| 197 | with open(file, "r", encoding="utf-8", errors="ignore") as f: |
| 198 | yield from f |
| 199 | |
| 200 | |
| 201 | def export_settings_commands_table(): |
no outgoing calls
no test coverage detected