bonsai - more bcf v3 support and lots of todos #2790

This commit is contained in:
Andrej730
2024-08-15 16:48:54 +05:00
parent 774533911c
commit d40119d617
5 changed files with 215 additions and 28 deletions
+5
View File
@@ -0,0 +1,5 @@
import bcf.v2.topic
import bcf.v3.topic
from typing import Union
TopicHandler = Union[bcf.v2.topic.TopicHandler, bcf.v3.topic.TopicHandler]
+5
View File
@@ -0,0 +1,5 @@
import bcf.v2.visinfo
import bcf.v3.visinfo
from typing import Union
VisualizationInfoHandler = Union[bcf.v2.visinfo.VisualizationInfoHandler, bcf.v3.visinfo.VisualizationInfoHandler]