From dd5f27ee5e5d785e2b359e34a98e8a40021f12ec Mon Sep 17 00:00:00 2001 From: crosstyan Date: Fri, 27 Feb 2026 22:15:30 +0800 Subject: [PATCH] chore(test): remove duplicate imports in demo pipeline tests Clean duplicate import declarations to reduce noise and keep test maintenance focused without changing assertions or runtime behavior. --- tests/demo/test_pipeline.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/tests/demo/test_pipeline.py b/tests/demo/test_pipeline.py index 23ab0fa..ceb13e5 100644 --- a/tests/demo/test_pipeline.py +++ b/tests/demo/test_pipeline.py @@ -14,19 +14,6 @@ import torch from opengait.demo.sconet_demo import ScoNetDemo -import json -import pickle -from pathlib import Path -import subprocess -import sys -import time -from typing import Final, cast - -import pytest -import torch - -from opengait.demo.sconet_demo import ScoNetDemo - REPO_ROOT: Final[Path] = Path(__file__).resolve().parents[2] SAMPLE_VIDEO_PATH: Final[Path] = REPO_ROOT / "assets" / "sample.mp4" CHECKPOINT_PATH: Final[Path] = REPO_ROOT / "ckpt" / "ScoNet-20000.pt"