@@ -567,7 +567,7 @@ async def arm_disarm(self):
567
567
raise ActionServerError (result , "arm_disarm()" )
568
568
569
569
if result .result == ActionServerResult .Result .SUCCESS :
570
- arm_disarm_stream .cancel ()
570
+ arm_disarm_stream .cancel ();
571
571
return
572
572
573
573
@@ -606,7 +606,7 @@ async def flight_mode_change(self):
606
606
raise ActionServerError (result , "flight_mode_change()" )
607
607
608
608
if result .result == ActionServerResult .Result .SUCCESS :
609
- flight_mode_change_stream .cancel ()
609
+ flight_mode_change_stream .cancel ();
610
610
return
611
611
612
612
@@ -645,7 +645,7 @@ async def takeoff(self):
645
645
raise ActionServerError (result , "takeoff()" )
646
646
647
647
if result .result == ActionServerResult .Result .SUCCESS :
648
- takeoff_stream .cancel ()
648
+ takeoff_stream .cancel ();
649
649
return
650
650
651
651
@@ -684,7 +684,7 @@ async def land(self):
684
684
raise ActionServerError (result , "land()" )
685
685
686
686
if result .result == ActionServerResult .Result .SUCCESS :
687
- land_stream .cancel ()
687
+ land_stream .cancel ();
688
688
return
689
689
690
690
@@ -723,7 +723,7 @@ async def reboot(self):
723
723
raise ActionServerError (result , "reboot()" )
724
724
725
725
if result .result == ActionServerResult .Result .SUCCESS :
726
- reboot_stream .cancel ()
726
+ reboot_stream .cancel ();
727
727
return
728
728
729
729
@@ -762,7 +762,7 @@ async def shutdown(self):
762
762
raise ActionServerError (result , "shutdown()" )
763
763
764
764
if result .result == ActionServerResult .Result .SUCCESS :
765
- shutdown_stream .cancel ()
765
+ shutdown_stream .cancel ();
766
766
return
767
767
768
768
@@ -801,7 +801,7 @@ async def terminate(self):
801
801
raise ActionServerError (result , "terminate()" )
802
802
803
803
if result .result == ActionServerResult .Result .SUCCESS :
804
- terminate_stream .cancel ()
804
+ terminate_stream .cancel ();
805
805
return
806
806
807
807
0 commit comments