Internal implementation of line counts analysis with timeout
(folder_path: Path)
| 1179 | |
| 1180 | @timeout(120) |
| 1181 | def _analyze_line_counts_impl(folder_path: Path): |
| 1182 | """Internal implementation of line counts analysis with timeout""" |
| 1183 | parser = LogParser(folder_path) |
| 1184 | return parser.analyze_line_counts() |
| 1185 | |
| 1186 | |
| 1187 | @app.route("/analysis/line-counts") |
no test coverage detected