Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
codekansas committed Jan 21, 2025
1 parent e4603f1 commit 2bac727
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kscale/web/clients/robot_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import logging
import tarfile
from pathlib import Path
from typing import Any

import httpx

Expand Down Expand Up @@ -53,7 +54,7 @@ async def update_robot_class(
new_description: str | None = None,
new_metadata: RobotURDFMetadataInput | None = None,
) -> RobotClass:
data = {}
data: dict[str, Any] = {}
if new_class_name is not None:
data["new_class_name"] = new_class_name
if new_description is not None:
Expand Down

0 comments on commit 2bac727

Please sign in to comment.