From dcf037829563b6763c7f4b1aff22b51ebce06989 Mon Sep 17 00:00:00 2001 From: Philip Meier Date: Wed, 30 Aug 2023 23:03:36 +0200 Subject: [PATCH] rename BoundingBoxes module to match class name (#7910) --- torchvision/tv_tensors/__init__.py | 2 +- torchvision/tv_tensors/{_bounding_box.py => _bounding_boxes.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename torchvision/tv_tensors/{_bounding_box.py => _bounding_boxes.py} (100%) diff --git a/torchvision/tv_tensors/__init__.py b/torchvision/tv_tensors/__init__.py index cb9bf702fb3..d55e10e8620 100644 --- a/torchvision/tv_tensors/__init__.py +++ b/torchvision/tv_tensors/__init__.py @@ -1,6 +1,6 @@ import torch -from ._bounding_box import BoundingBoxes, BoundingBoxFormat +from ._bounding_boxes import BoundingBoxes, BoundingBoxFormat from ._image import Image from ._mask import Mask from ._torch_function_helpers import set_return_type diff --git a/torchvision/tv_tensors/_bounding_box.py b/torchvision/tv_tensors/_bounding_boxes.py similarity index 100% rename from torchvision/tv_tensors/_bounding_box.py rename to torchvision/tv_tensors/_bounding_boxes.py