Skip to content

Commit

Permalink
formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
pascal-roth committed Oct 11, 2024
1 parent 4fc4be5 commit 27e88ed
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -256,12 +256,12 @@ def has_debug_vis_implementation(self) -> bool:

def get_active_iterable_terms(self, env_idx: int) -> Sequence[tuple[str, Sequence[float]]]:
"""Returns the active terms as iterable sequence of tuples.
The first element of the tuple is the name of the term and the second element is the raw value(s) of the term.
Args:
env_idx: The specific environment to pull the active terms from.
Returns:
The active terms.
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -293,12 +293,12 @@ def has_debug_vis_implementation(self) -> bool:

def get_active_iterable_terms(self, env_idx: int) -> Sequence[tuple[str, Sequence[float]]]:
"""Returns the active terms as iterable sequence of tuples.
The first element of the tuple is the name of the term and the second element is the raw value(s) of the term.
Args:
env_idx: The specific environment to pull the active terms from.
Returns:
The active terms.
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,12 @@ def compute(self, env_ids: Sequence[int] | None = None):

def get_active_iterable_terms(self, env_idx: int) -> Sequence[tuple[str, Sequence[float]]]:
"""Returns the active terms as iterable sequence of tuples.
The first element of the tuple is the name of the term and the second element is the raw value(s) of the term.
Args:
env_idx: The specific environment to pull the active terms from.
Returns:
The active terms.
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,9 +194,9 @@ def find_terms(self, name_keys: str | Sequence[str]) -> list[str]:

def get_active_iterable_terms(self, env_idx: int) -> Sequence[tuple[str, Sequence[float]]]:
"""Returns the active terms as iterable sequence of tuples.
The first element of the tuple is the name of the term and the second element is the raw value(s) of the term.
Returns:
The active terms.
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,12 @@ def __str__(self) -> str:

def get_active_iterable_terms(self, env_idx: int) -> Sequence[tuple[str, Sequence[float]]]:
"""Returns the active terms as iterable sequence of tuples.
The first element of the tuple is the name of the term and the second element is the raw value(s) of the term.
Args:
env_idx: The specific environment to pull the active terms from.
Returns:
The active terms.
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,12 +188,12 @@ def get_term_cfg(self, term_name: str) -> RewardTermCfg:

def get_active_iterable_terms(self, env_idx: int) -> Sequence[tuple[str, Sequence[float]]]:
"""Returns the active terms as iterable sequence of tuples.
The first element of the tuple is the name of the term and the second element is the raw value(s) of the term.
Args:
env_idx: The specific environment to pull the active terms from.
Returns:
The active terms.
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,12 +180,12 @@ def get_term(self, name: str) -> torch.Tensor:

def get_active_iterable_terms(self, env_idx: int) -> Sequence[tuple[str, Sequence[float]]]:
"""Returns the active terms as iterable sequence of tuples.
The first element of the tuple is the name of the term and the second element is the raw value(s) of the term.
Args:
env_idx: The specific environment to pull the active terms from.
Returns:
The active terms.
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@
from omni.ui import CollapsableFrame, Frame, VStack, Window

from omni.isaac.lab.managers import ManagerBase
from omni.isaac.lab.utils import configclass

from .image_plot import ImagePlot
from .line_plot import LiveLinePlot
from .ui_visualizer_base import UiVisualizerBase
from omni.isaac.lab.utils import configclass


@configclass
Expand Down

0 comments on commit 27e88ed

Please sign in to comment.