Closed antoinevg closed 9 months ago
We've recently settled on Python 3.8 as our minimum supported Python version for releases.
Python 3.8 does not however support str | None syntax as it was only introduced in 3.10.
str | None
This PR uses typing.Optional instead.
typing.Optional
We've recently settled on Python 3.8 as our minimum supported Python version for releases.
Python 3.8 does not however support
str | None
syntax as it was only introduced in 3.10.This PR uses
typing.Optional
instead.