Skip to content

Commit 573fae1

Browse files
fix: add missing __future__ import to llm.py for Python 3.9
1 parent 07bc9a7 commit 573fae1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pyqual/llm.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
provided so that pyqual keeps working on Python 3.9 or without ``llx``.
66
"""
77

8+
from __future__ import annotations
9+
810
try:
911
# Prefer the upstream canonical implementation.
1012
from llx.llm import ( # noqa: F401

0 commit comments

Comments
 (0)