Skip to content

Commit

Permalink
(hmi) simplified super call
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthijsBurgh authored May 1, 2024
1 parent 278d694 commit 72be897
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hmi/scripts/qr_code_decoder
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class QRCodeDecode(AbstractHMIServer):
"""

def __init__(self, max_tries: int = 5, loop_rate: float = 1.0, *args, **kwargs) -> None:
super(self.__class__, self).__init__(*args, **kwargs)
super().__init__(*args, **kwargs)

# Image
self._image_sub: Optional[rospy.Subscriber] = None
Expand Down

0 comments on commit 72be897

Please sign in to comment.