Skip to content

Commit 86d4766

Browse files
authored
Merge pull request #1542 from alexmcroberts/patch-1
Fix typo of break to brake
2 parents 990bc77 + 43b7cee commit 86d4766

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PythonClient/car/hello_car.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@
4141
car_controls.is_manual_gear = False; # change back gear to auto
4242
car_controls.manual_gear = 0
4343

44-
# apply breaks
44+
# apply brakes
4545
car_controls.brake = 1
4646
client.setCarControls(car_controls)
47-
print("Apply break")
47+
print("Apply brakes")
4848
time.sleep(3) # let car drive a bit
49-
car_controls.brake = 0 #remove break
49+
car_controls.brake = 0 #remove brake
5050

5151
# get camera images from the car
5252
responses = client.simGetImages([

0 commit comments

Comments
 (0)