Commit feadd02
fix: use Union[] syntax for Python < 3.10 compatibility
Replace `float | Tuple[float, float]` union type annotation with
`Union[float, Tuple[float, float]]` in StarmapSession.__init__ to
maintain compatibility with Python versions older than 3.10, which
do not support the PEP 604 `X | Y` syntax at runtime.
Refers to SPSTRAT-731
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>1 parent f260b64 commit feadd02
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
39 | | - | |
| 39 | + | |
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
| |||
0 commit comments