Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
WT-MM committed Nov 24, 2024
1 parent ed52b63 commit 7e37304
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions pykos/pykos/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
from pykos.services.imu import IMUServiceClient
from pykos.services.process_manager import ProcessManagerServiceClient


class KOS:
"""KOS client.
Expand Down
2 changes: 1 addition & 1 deletion pykos/pykos/services/actuator.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def configure_actuator(self, actuator_id: int, **kwargs: Dict[str, Any]) -> comm
request = actuator_pb2.ConfigureActuatorRequest(**config)
return self.stub.ConfigureActuator(request)

def get_actuators_state(self, actuator_ids: List[int] = None) -> List[common_pb2.ActionResult]:
def get_actuators_state(self, actuator_ids: Optional[List[int]] = None) -> List[common_pb2.ActionResult]:
"""Get the state of multiple actuators.
Args:
Expand Down
3 changes: 2 additions & 1 deletion pykos/pykos/services/process_manager.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Process manager service client"""
"""Process manager service client."""

from typing import Optional, Tuple

import grpc
Expand Down

0 comments on commit 7e37304

Please sign in to comment.