From fcc39a4a50b83ba3a754928cc45873966784e47d Mon Sep 17 00:00:00 2001 From: ShashwatPatil Date: Thu, 20 Mar 2025 13:12:56 +0530 Subject: [PATCH] fixed unused import --- node-hub/dora-gradio/dora_gradio/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-hub/dora-gradio/dora_gradio/main.py b/node-hub/dora-gradio/dora_gradio/main.py index 06bf2724..bd3d142e 100644 --- a/node-hub/dora-gradio/dora_gradio/main.py +++ b/node-hub/dora-gradio/dora_gradio/main.py @@ -3,7 +3,6 @@ import numpy as np import logging import pyarrow as pa from dora import Node -import subprocess import signal import os import cv2 @@ -138,6 +137,7 @@ class DoraGradioUI: def launch(self): try: # Kill existing process on port 7860 if any + # import subprocess # subprocess.run('lsof -ti :7860 | xargs kill -9', shell=True, stderr=subprocess.DEVNULL) interface = self.create_interface()