mirror of https://github.com/razor-ai/soup.git
fix: add future annotations for Python 3.9 compatibility
`dict | None` syntax requires Python 3.10+. Adding `from __future__ import annotations` fixes collection on 3.9.
This commit is contained in:
parent
0ebe59ae00
commit
67adbff558
|
|
@ -9,6 +9,8 @@ catching issues that in-process CliRunner misses:
|
|||
- exit code propagation through the OS shell
|
||||
"""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import os
|
||||
import subprocess
|
||||
|
|
|
|||
Loading…
Reference in New Issue