Fix ruff import-ordering in covering and spatial tests

ruff check flagged unsorted imports in test/core/test_covering.py
and test/tool/test_spatial.py. Fix by reorganising import blocks.
This commit is contained in:
CyrilWaechter
2026-08-02 00:25:39 +02:00
parent ebad18d0b3
commit 888595b142
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -18,9 +18,10 @@
# #
# This file was generated with the assistance of an AI coding tool. # This file was generated with the assistance of an AI coding tool.
import pytest
import bonsai import bonsai
import bonsai.core.covering as subject import bonsai.core.covering as subject
import pytest
from test.core.bootstrap import Prophecy, ifc, root, spatial from test.core.bootstrap import Prophecy, ifc, root, spatial
# NOTE: The Prophecy mocking framework serialises call arguments as JSON, # NOTE: The Prophecy mocking framework serialises call arguments as JSON,
+2 -1
View File
@@ -30,7 +30,8 @@ from mathutils import Matrix
import bonsai.core.tool import bonsai.core.tool
import bonsai.tool as tool import bonsai.tool as tool
from bonsai.tool.spatial import Spatial as subject, _bump_geom_cache_token from bonsai.tool.spatial import Spatial as subject
from bonsai.tool.spatial import _bump_geom_cache_token
from test.bim.bootstrap import NewFile from test.bim.bootstrap import NewFile