From 354cf3ee573079388f1aa0a91dd01f25f3aa9988 Mon Sep 17 00:00:00 2001 From: "Samuel EF. Tinnerholm" Date: Sun, 24 May 2026 17:44:32 +0300 Subject: [PATCH] fix: use Python 3.8-compatible annotations in errors.py Fixes #561 --- sdks/python/pmxt/errors.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sdks/python/pmxt/errors.py b/sdks/python/pmxt/errors.py index e41ab1e1..b414edea 100644 --- a/sdks/python/pmxt/errors.py +++ b/sdks/python/pmxt/errors.py @@ -5,6 +5,8 @@ enabling users to catch specific error types. """ +from __future__ import annotations + class PmxtError(Exception): """Base error class for all pmxt errors."""