Skip to content

Commit 847d4de

Browse files
committed
remove final
1 parent cd38659 commit 847d4de

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

spynnaker/spynnaker_plotting.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
https://github.com/NeuralEnsemble/PyNN/blob/master/pyNN/utility/plotting.py
1818
"""
1919

20-
from typing import Any, Dict, Final, List, TypeAlias, Union
20+
from typing import Any, Dict, List, TypeAlias, Union
2121
from types import ModuleType
2222

2323
from neo import SpikeTrain, Block, Segment, AnalogSignal
@@ -36,7 +36,7 @@
3636
except ImportError:
3737
_matplotlib_missing = True
3838

39-
TA_DATA: Final['TypeAlias'] = Union[
39+
TA_DATA: TypeAlias = Union[
4040
List[SpikeTrain], SpikeTrainList, AnalogSignal, NDArray, Block, Segment]
4141

4242

0 commit comments

Comments
 (0)