Skip to content

Commit c51ec58

Browse files
committed
Ignore typing
Signed-off-by: Beat Buesser <[email protected]>
1 parent 8cbfc20 commit c51ec58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

art/estimators/object_tracking/pytorch_goturn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ def track(self, img_files: list[str], box: np.ndarray, visualize: bool = False)
796796
for i_f, img_file in enumerate(img_files):
797797
image = Image.open(img_file)
798798
if not image.mode == "RGB":
799-
image = image.convert("RGB")
799+
image = image.convert("RGB") # type: ignore
800800

801801
start_time = time.time()
802802
if i_f == 0:

0 commit comments

Comments
 (0)