Skip to content

Commit

Permalink
Run formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
johannesschrimpf committed Jun 1, 2021
1 parent 89f1a45 commit fa31461
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion blueye/sdk/drone.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,14 @@ class Drone:
`slaveModeEnabled=True` you will still be able to receive data from the drone.
"""

def __init__(self, ip="192.168.1.101", tcpPort=2011, autoConnect=True, slaveModeEnabled=False, udpTimeout=3):
def __init__(
self,
ip="192.168.1.101",
tcpPort=2011,
autoConnect=True,
slaveModeEnabled=False,
udpTimeout=3,
):
self._ip = ip
self._port = tcpPort
self._slave_mode_enabled = slaveModeEnabled
Expand Down

0 comments on commit fa31461

Please sign in to comment.