Skip to content

Commit 8457ba3

Browse files
committed
Fix pytest collection
1 parent 25044da commit 8457ba3

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

tests/mock_vws/test_add_target.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
Tests for the mock of the add target endpoint.
33
"""
44

5+
from __future__ import annotations
6+
57
import base64
68
import io
79
import json

tests/mock_vws/test_query.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
https://library.vuforia.com/articles/Solution/How-To-Perform-an-Image-Recognition-Query.
55
"""
66

7+
from __future__ import annotations
8+
79
import base64
810
import calendar
911
import datetime

tests/mock_vws/test_update_target.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
Tests for the mock of the update target endpoint.
33
"""
44

5+
from __future__ import annotations
6+
57
import base64
68
import io
79
import json

tests/mock_vws/utils/assertions.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
Assertion helpers.
33
"""
44

5+
from __future__ import annotations
6+
57
import copy
68
import datetime
79
import email.utils

0 commit comments

Comments
 (0)