(message: str)
| 67 | |
| 68 | @staticmethod |
| 69 | def error(message: str): |
| 70 | return Fork.Response('', [], 500, message) |
| 71 | |
| 72 | def __init__(self, base_fork_url: str, selector_list: List[str]): |
| 73 | base_fork_url = remove_fragment(base_fork_url) |
no outgoing calls
no test coverage detected