| 124 | |
| 125 | |
| 126 | class InvalidGeolocationFormat(Exception): |
| 127 | def __init__(self, message="Invalid geolocation format, expected: long, lat, radius"): |
| 128 | self.message = message |
| 129 | super().__init__(self.message) |
| 130 | |
| 131 | |
| 132 | async def process_geolocation(target: str, geolocation: str): |
no outgoing calls
no test coverage detected