Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

from __future__ import annotations

from typing import Any
from typing import Any, Self

import carb
import numpy as np
Expand Down Expand Up @@ -172,7 +172,7 @@ def _update_attributes(self, **kwargs: Any) -> None:
"""

@classmethod
def create(cls, path: str, **kwargs: Any) -> "_PhysicsSensorAuthoring":
def create(cls, path: str, **kwargs: Any) -> Self:
"""Create a new sensor at the specified path.

Always creates a fresh prim, auto-numbering the path if it already
Expand Down