We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent daa5e15 commit eb55033Copy full SHA for eb55033
src/vws/reports.py
@@ -2,11 +2,10 @@
2
Classes for representing Vuforia reports.
3
"""
4
5
-from __future__ import annotations
6
-
7
import datetime
8
from dataclasses import dataclass
9
from enum import Enum
+from typing import Optional
10
11
12
@dataclass
@@ -88,7 +87,7 @@ class TargetData:
88
87
89
90
name: str
91
- application_metadata: str | None
+ application_metadata: Optional[str]
92
target_timestamp: datetime.datetime
93
94
@@ -102,7 +101,7 @@ class QueryResult:
102
101
103
104
target_id: str
105
- target_data: TargetData | None
+ target_data: Optional[TargetData]
106
107
108
0 commit comments