[release/3.0.0-beta2] Fix quadruped tutorial noise import#6037
Conversation
Greptile SummaryThis backport fixes a broken import in the quadruped tutorial that would cause an
Confidence Score: 5/5Safe to merge — corrects a hard import error that prevented the tutorial from running at all. The change is a single-line import correction. No files require special attention. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A["create_quadruped_base_env.py"] --> B["from isaaclab.utils.noise import UniformNoiseCfg as Unoise"]
B --> C["ObservationsCfg.PolicyCfg"]
C --> D["base_lin_vel noise=Unoise(n_min=-0.1, n_max=0.1)"]
C --> E["base_ang_vel noise=Unoise(n_min=-0.2, n_max=0.2)"]
C --> F["projected_gravity noise=Unoise(n_min=-0.05, n_max=0.05)"]
C --> G["joint_pos noise=Unoise(n_min=-0.01, n_max=0.01)"]
C --> H["joint_vel noise=Unoise(n_min=-1.5, n_max=1.5)"]
C --> I["height_scan noise=Unoise(n_min=-0.1, n_max=0.1)"]
style B fill:#90EE90
Reviews (1): Last reviewed commit: "Fix quadruped tutorial noise import" | Re-trigger Greptile |
There was a problem hiding this comment.
🤖 Isaac Lab Review Bot
PR: #6037 — [release/3.0.0-beta2] Fix quadruped tutorial noise import
Author: @ooctipus | Base: release/3.0.0-beta2
Summary
Backport of #6033 to release/3.0.0-beta2. Updates the quadruped tutorial to import UniformNoiseCfg instead of the deprecated AdditiveUniformNoiseCfg.
Review
| # | Category | Finding |
|---|---|---|
| — | — | No issues found |
Details
- Change: Single-line import fix in
scripts/tutorials/03_envs/create_quadruped_base_env.py AdditiveUniformNoiseCfg→UniformNoiseCfg(aliased asUnoise)- This aligns with the noise API refactor where additive uniform noise was consolidated into
UniformNoiseCfg - Same commit as #6032 (
78e0093d) targeting the beta2 release branch
CI Status
✅ All core checks passing (pre-commit, build wheel, test suites)
⏳ A few infrastructure checks pending (Docker builds, license-check) — unrelated to this change
Verdict
✅ LGTM — Minimal, correct backport fix. No concerns.
Reviewed commit: 78e0093d | 0 findings | [Automated review]
Summary
release/3.0.0-beta2.AdditiveUniformNoiseCfgtoUniformNoiseCfg.Source
Tests
git diff --check upstream/release/3.0.0-beta2..HEADscripts/tutorials/03_envs/create_quadruped_base_env.pywithast.parse