Skip to content

Commit a5f00f2

Browse files
committed
Remove unused variable.
1 parent 62a3e7c commit a5f00f2

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

webserver/server.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
import server
2-
import folder_paths as comfy_paths
32
import os
43

54
from ..shared_utils.log_utils import cstr
65

7-
ROOT_PATH = os.path.join(comfy_paths.get_folder_paths("custom_nodes")[0], "ComfyUI-3D-Pack")
8-
96
web = server.web
107

118
SUPPORTED_VIEW_EXTENSIONS = (
@@ -38,4 +35,4 @@ async def view_file(request):
3835
if filepath.lower().endswith(SUPPORTED_VIEW_EXTENSIONS) and os.path.exists(filepath):
3936
return web.FileResponse(filepath)
4037

41-
return web.Response(status=404)
38+
return web.Response(status=404)

0 commit comments

Comments
 (0)