(path_name)
| 49 | |
| 50 | @staticmethod |
| 51 | def safe_path(path_name): |
| 52 | safe_path_name = "".join(x for x in path_name if x.isalnum() or "-") |
| 53 | return safe_path_name |
| 54 | |
| 55 | @staticmethod |
| 56 | def debug(endpoint: str, request, response): |
no test coverage detected