From 331ca4ad41844dda920f0dc7954916215e6a3661 Mon Sep 17 00:00:00 2001 From: Github Actions Bot Date: Wed, 18 Oct 2023 15:41:45 +0000 Subject: [PATCH] style: [CI] format --- spatialyze/video_processor/stream/mono_depth_estimator.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/spatialyze/video_processor/stream/mono_depth_estimator.py b/spatialyze/video_processor/stream/mono_depth_estimator.py index 4d4ca56..dd70143 100644 --- a/spatialyze/video_processor/stream/mono_depth_estimator.py +++ b/spatialyze/video_processor/stream/mono_depth_estimator.py @@ -3,12 +3,11 @@ import torch from torchvision import transforms -from .data_types import Skip, skip - from ..modules.monodepth2.monodepth2.layers import disp_to_depth from ..stages.depth_estimation import monodepth -from .stream import Stream from ..video import Video +from .data_types import Skip, skip +from .stream import Stream class MonoDepthEstimator(Stream[npt.NDArray]):