Skip to content

Commit

Permalink
move out checkout.
Browse files Browse the repository at this point in the history
  • Loading branch information
zzhlogin committed Feb 13, 2024
1 parent 45024a6 commit f4c51e6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def in_path(self, sub_path: str):


def main() -> None:
server_address: tuple[str, int] = ("0.0.0.0", _PORT)
server_address: Tuple[str, int] = ("0.0.0.0", _PORT)
request_handler_class: type = RequestHandler
requests_server: ThreadingHTTPServer = ThreadingHTTPServer(server_address, request_handler_class)
atexit.register(requests_server.shutdown)
Expand Down

0 comments on commit f4c51e6

Please sign in to comment.