From 5f5a4f064ab4830dfaf72748f82f36a2b5455739 Mon Sep 17 00:00:00 2001 From: Adam Seering Date: Wed, 16 Aug 2023 04:17:01 +0000 Subject: [PATCH] Fix on Python 3.8 and older --- spanner_analytics/database.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spanner_analytics/database.py b/spanner_analytics/database.py index 9634d85..d2fd4a0 100644 --- a/spanner_analytics/database.py +++ b/spanner_analytics/database.py @@ -12,6 +12,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +from __future__ import annotations + """Represents a connection to a Cloud Spanner database. Intended for running larger analytic operations.