Skip to content

Commit

Permalink
Fixed linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mgupta27 committed Jul 5, 2024
1 parent cbcf5b5 commit deefbda
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modules/flight_interface/flight_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ class FlightInterface:
__create_key = object()

@classmethod
def create(cls, address: str, timeout_home: float, baud_rate: int) -> "tuple[bool, FlightInterface | None]":
def create(
cls, address: str, timeout_home: float, baud_rate: int
) -> "tuple[bool, FlightInterface | None]":
"""
address: TCP address or port.
timeout_home: Timeout for home location in seconds.
Expand Down

0 comments on commit deefbda

Please sign in to comment.