Fix error starting Bonsai (77697aeef)

This commit is contained in:
Andrej730
2026-03-13 11:56:23 +05:00
parent cf42f986c4
commit 0b44e146bd
+6 -4
View File
@@ -16,6 +16,8 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with Bonsai. If not, see <http://www.gnu.org/licenses/>. # along with Bonsai. If not, see <http://www.gnu.org/licenses/>.
from __future__ import annotations
from typing import TYPE_CHECKING, Any, Optional from typing import TYPE_CHECKING, Any, Optional
import bpy import bpy
@@ -802,8 +804,8 @@ class BIM_UL_task_columns(UIList):
self, self,
context, context,
layout: bpy.types.UILayout, layout: bpy.types.UILayout,
data: "BIMWorkScheduleProperties", data: BIMWorkScheduleProperties,
item: "Attribute", item: Attribute,
icon, icon,
active_data, active_data,
active_propname, active_propname,
@@ -901,8 +903,8 @@ class BIM_UL_tasks(UIList):
self, self,
context, context,
layout: bpy.types.UILayout, layout: bpy.types.UILayout,
data: "BIMTaskTreeProperties", data: BIMTaskTreeProperties,
item: "Task", item: Task,
icon, icon,
active_data, active_data,
active_propname, active_propname,