We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcef7ed commit cdfa243Copy full SHA for cdfa243
tests/compas/geometry/test_polyhedron.py
@@ -1,8 +1,3 @@
1
-import pytest
2
-import json
3
-import compas
4
-from random import random
5
-from compas.geometry import Point
6
from compas.geometry import Polyhedron
7
from compas.itertools import pairwise
8
tests/compas/scene/test_scene.py
@@ -104,7 +104,7 @@ def test_scene_clear():
104
scene = Scene()
105
sceneobj1 = scene.add(Box())
106
sceneobj2 = scene.add(Box(), parent=sceneobj1)
107
- sceneobj3 = scene.add(Box(), parent=sceneobj2)
+ sceneobj3 = scene.add(Box(), parent=sceneobj2) # noqa: F841
108
109
assert len(scene.objects) == 3
110
0 commit comments