In #1065, I mistakenly added Type hints that use the built-in tuple type, which is introduced in Python 3.9 and hence not supported in Python 3.8. I replaced these and some other instances I found in the code by the corresponding types from typing.
This mismatch seems to be a reason for a failing test in the web version mxcube/mxcubeweb#1483
In #1065, I mistakenly added Type hints that use the built-in
tuple
type, which is introduced inPython 3.9
and hence not supported inPython 3.8
. I replaced these and some other instances I found in the code by the corresponding types fromtyping
.This mismatch seems to be a reason for a failing test in the web version mxcube/mxcubeweb#1483