Skip to content

Commit eb55033

Browse files
committed
Fix sphinx build
1 parent daa5e15 commit eb55033

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/vws/reports.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
Classes for representing Vuforia reports.
33
"""
44

5-
from __future__ import annotations
6-
75
import datetime
86
from dataclasses import dataclass
97
from enum import Enum
8+
from typing import Optional
109

1110

1211
@dataclass
@@ -88,7 +87,7 @@ class TargetData:
8887
"""
8988

9089
name: str
91-
application_metadata: str | None
90+
application_metadata: Optional[str]
9291
target_timestamp: datetime.datetime
9392

9493

@@ -102,7 +101,7 @@ class QueryResult:
102101
"""
103102

104103
target_id: str
105-
target_data: TargetData | None
104+
target_data: Optional[TargetData]
106105

107106

108107
@dataclass

0 commit comments

Comments
 (0)