Skip to content

Commit

Permalink
fix pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedh committed Sep 23, 2019
1 parent 20ad8aa commit 52bee86
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions tests/test_extrude.py
Expand Up @@ -51,10 +51,10 @@ def test_extrusion(self):
assert e.contains(b.vertices).all()

# try with negative height and transform
transform = [[1., 0., 0., -0.],
[0., 1., 0., 0.],
transform = [[1., 0., 0., -0.],
[0., 1., 0., 0.],
[-0., -0., -1., -0.],
[0., 0., 0., 1.]]
[0., 0., 0., 1.]]
e = g.trimesh.primitives.Extrusion(
polygon=polygon,
height=-1.0,
Expand Down
2 changes: 1 addition & 1 deletion trimesh/version.py
@@ -1 +1 @@
__version__ = '3.2.18'
__version__ = '3.2.19'

0 comments on commit 52bee86

Please sign in to comment.