Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Feb 19, 2024
1 parent 16c6350 commit 8447010
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions happypose/toolbox/renderer/panda3d_batch_renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ def worker_loop(
rgb=renderings_.rgb,
normals=renderings_.normals if render_args.render_normals else None,
depth=renderings_.depth if render_args.render_depth else None,
binary_mask=renderings_.binary_mask
if render_args.render_binary_mask
else None,
binary_mask=(
renderings_.binary_mask if render_args.render_binary_mask else None
),
)
del render_args
out_queue.put(output)
Expand Down
1 change: 1 addition & 0 deletions tests/test_renderer_bullet.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Set of unit tests for bullet renderer."""

import unittest
from pathlib import Path

Expand Down

0 comments on commit 8447010

Please sign in to comment.