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.
This commit is contained in:
2026-02-27 22:15:30 +08:00
parent 433e673807
commit dd5f27ee5e
-13
View File
@@ -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"