Skip to content

Commit 74cd1b8

Browse files
committed
Import annotations from future
1 parent a039c83 commit 74cd1b8

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""Setup script for VWS Python, a wrapper for Vuforia's Web Services APIs."""
22

3+
from __future__ import annotations
4+
35
from pathlib import Path
46

57
from setuptools import setup

src/vws/query.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
Tools for interacting with the Vuforia Cloud Recognition Web APIs.
33
"""
44

5+
from __future__ import annotations
6+
57
import datetime
68
import io
79
from typing import Optional

src/vws/vws.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
Tools for interacting with Vuforia APIs.
33
"""
44

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

0 commit comments

Comments
 (0)