Skip to content

Commit

Permalink
remove breakpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
codekansas committed Aug 30, 2024
1 parent 5ba6fa0 commit 2194334
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions kscale/store/pybullet.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ async def main(args: Sequence[str] | None = None) -> None:
# Gets the URDF path.
urdf_path = await download_urdf(parsed_args.listing_id)

breakpoint()

try:
import pybullet as p # type: ignore[import-not-found]
except ImportError:
Expand Down
1 change: 0 additions & 1 deletion kscale/store/urdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ async def download_urdf(listing_id: str) -> Path:
urdf_info = fetch_urdf_info(listing_id)

if urdf_info.urdf is None:
breakpoint()
raise ValueError(f"No URDF found for listing {listing_id}")

artifact_url = urdf_info.urdf.url
Expand Down

0 comments on commit 2194334

Please sign in to comment.