Skip to content

Commit

Permalink
Merge pull request #169 from BigRoy/enhancement/review_allow_lopimpor…
Browse files Browse the repository at this point in the history
…tcam

Allow `lopimportcam` for review
  • Loading branch information
BigRoy authored Nov 11, 2024
2 parents 197b6b0 + 63c750f commit 023aec1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def get_invalid_camera_path(self, rop_node):
if not camera_node:
return "Camera path does not exist: '{}'".format(path)
type_name = camera_node.type().name()
if type_name != "cam":
if type_name not in {"cam", "lopimportcam"}:
return "Camera path is not a camera: '{}' (type: {})".format(
path, type_name
)
Expand Down

0 comments on commit 023aec1

Please sign in to comment.