Skip to content

Commit 6a11d4e

Browse files
author
Dylan Huang
committed
try removing module export
1 parent f1cbc97 commit 6a11d4e

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

eval_protocol/utils/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,5 @@
99

1010
# Export ViteServer for easier access
1111
from .logs_server import LogsServer
12-
from .show_results_url import show_results_url, is_server_running, generate_invocation_filter_url
1312

14-
__all__ = ["LogsServer", "show_results_url", "is_server_running", "generate_invocation_filter_url"]
13+
__all__ = ["LogsServer"]

eval_protocol/utils/show_results_url.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
import socket
66
import urllib.parse
7-
from typing import List, Dict, Any
87

98

109
def is_server_running(host: str = "localhost", port: int = 8000) -> bool:

0 commit comments

Comments
 (0)