Island: Add missing type hint to _configure_gevent_exception_handling()

This commit is contained in:
Mike Salvatore 2022-08-12 10:50:23 -04:00
parent 2379271c13
commit dd30b61658
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ def _start_island_server(
http_server.serve_forever()
def _configure_gevent_exception_handling(data_dir):
def _configure_gevent_exception_handling(data_dir: Path):
hub = gevent.hub.get_hub()
gevent_exception_log = open(data_dir / GEVENT_EXCEPTION_LOG, "w+", buffering=1)