cleanup imports

This commit is contained in:
kirilllzaitsev 2023-07-29 23:41:02 +02:00
parent f8005b268b
commit e8f616ba2f
1 changed files with 1 additions and 4 deletions

View File

@ -1,19 +1,16 @@
import xml.etree.ElementTree as ET
from contextlib import ExitStack as DoesNotRaise
from test.utils import mock_detections
from typing import List, Optional, Tuple
from typing import List, Optional
import numpy as np
import pytest
from supervision.dataset.formats.pascal_voc import (
detections_from_xml_obj,
detections_to_pascal_voc,
load_pascal_voc_annotations,
object_to_pascal_voc,
parse_polygon_points,
)
from supervision.detection.core import Detections
def are_xml_elements_equal(elem1, elem2):