Skip to content

Commit

Permalink
Remove call to genpy.message parent class
Browse files Browse the repository at this point in the history
  • Loading branch information
felixvd committed May 1, 2019
1 parent c9a0703 commit 3542528
Show file tree
Hide file tree
Showing 61 changed files with 61 additions and 61 deletions.
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_Accel.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Accel, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.linear is None:
self.linear = geometry_msgs.msg.Vector3()
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_AccelStamped.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(AccelStamped, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.header is None:
self.header = std_msgs.msg.Header()
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_AccelWithCovariance.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(AccelWithCovariance, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.accel is None:
self.accel = geometry_msgs.msg.Accel()
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_AccelWithCovarianceStamped.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(AccelWithCovarianceStamped, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.header is None:
self.header = std_msgs.msg.Header()
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_Inertia.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Inertia, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.m is None:
self.m = 0.
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_InertiaStamped.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(InertiaStamped, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.header is None:
self.header = std_msgs.msg.Header()
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_Point.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Point, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.x is None:
self.x = 0.
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_Point32.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Point32, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.x is None:
self.x = 0.
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_PointStamped.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(PointStamped, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.header is None:
self.header = std_msgs.msg.Header()
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_Polygon.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Polygon, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.points is None:
self.points = []
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_PolygonStamped.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(PolygonStamped, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.header is None:
self.header = std_msgs.msg.Header()
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_Pose.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Pose, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.position is None:
self.position = geometry_msgs.msg.Point()
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_Pose2D.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Pose2D, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.x is None:
self.x = 0.
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_PoseArray.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(PoseArray, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.header is None:
self.header = std_msgs.msg.Header()
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_PoseStamped.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(PoseStamped, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.header is None:
self.header = std_msgs.msg.Header()
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_PoseWithCovariance.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(PoseWithCovariance, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.pose is None:
self.pose = geometry_msgs.msg.Pose()
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_PoseWithCovarianceStamped.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(PoseWithCovarianceStamped, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.header is None:
self.header = std_msgs.msg.Header()
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_Quaternion.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Quaternion, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.x is None:
self.x = 0.
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_QuaternionStamped.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(QuaternionStamped, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.header is None:
self.header = std_msgs.msg.Header()
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_Transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Transform, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.translation is None:
self.translation = geometry_msgs.msg.Vector3()
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_TransformStamped.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(TransformStamped, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.header is None:
self.header = std_msgs.msg.Header()
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_Twist.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Twist, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.linear is None:
self.linear = geometry_msgs.msg.Vector3()
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_TwistStamped.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(TwistStamped, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.header is None:
self.header = std_msgs.msg.Header()
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_TwistWithCovariance.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(TwistWithCovariance, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.twist is None:
self.twist = geometry_msgs.msg.Twist()
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_TwistWithCovarianceStamped.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(TwistWithCovarianceStamped, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.header is None:
self.header = std_msgs.msg.Header()
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_Vector3.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Vector3, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.x is None:
self.x = 0.
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_Vector3Stamped.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Vector3Stamped, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.header is None:
self.header = std_msgs.msg.Header()
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_Wrench.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Wrench, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.force is None:
self.force = geometry_msgs.msg.Vector3()
Expand Down
2 changes: 1 addition & 1 deletion geometry_msgs/msg/_WrenchStamped.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(WrenchStamped, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.header is None:
self.header = std_msgs.msg.Header()
Expand Down
2 changes: 1 addition & 1 deletion std_msgs/msg/_Bool.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Bool, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.data is None:
self.data = False
Expand Down
2 changes: 1 addition & 1 deletion std_msgs/msg/_Byte.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Byte, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.data is None:
self.data = 0
Expand Down
2 changes: 1 addition & 1 deletion std_msgs/msg/_ByteMultiArray.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(ByteMultiArray, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.layout is None:
self.layout = std_msgs.msg.MultiArrayLayout()
Expand Down
2 changes: 1 addition & 1 deletion std_msgs/msg/_Char.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Char, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.data is None:
self.data = 0
Expand Down
2 changes: 1 addition & 1 deletion std_msgs/msg/_ColorRGBA.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(ColorRGBA, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.r is None:
self.r = 0.
Expand Down
2 changes: 1 addition & 1 deletion std_msgs/msg/_Duration.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Duration, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.data is None:
self.data = genpy.Duration()
Expand Down
2 changes: 1 addition & 1 deletion std_msgs/msg/_Empty.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Empty, self).__init__(*args, **kwds)
pass

def _get_types(self):
"""
Expand Down
2 changes: 1 addition & 1 deletion std_msgs/msg/_Float32.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Float32, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.data is None:
self.data = 0.
Expand Down
2 changes: 1 addition & 1 deletion std_msgs/msg/_Float32MultiArray.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Float32MultiArray, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.layout is None:
self.layout = std_msgs.msg.MultiArrayLayout()
Expand Down
2 changes: 1 addition & 1 deletion std_msgs/msg/_Float64.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Float64, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.data is None:
self.data = 0.
Expand Down
2 changes: 1 addition & 1 deletion std_msgs/msg/_Float64MultiArray.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Float64MultiArray, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.layout is None:
self.layout = std_msgs.msg.MultiArrayLayout()
Expand Down
2 changes: 1 addition & 1 deletion std_msgs/msg/_Header.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Header, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.seq is None:
self.seq = 0
Expand Down
2 changes: 1 addition & 1 deletion std_msgs/msg/_Int16.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Int16, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.data is None:
self.data = 0
Expand Down
2 changes: 1 addition & 1 deletion std_msgs/msg/_Int16MultiArray.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Int16MultiArray, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.layout is None:
self.layout = std_msgs.msg.MultiArrayLayout()
Expand Down
2 changes: 1 addition & 1 deletion std_msgs/msg/_Int32.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def __init__(self, *args, **kwds):
to set specific fields.
"""
if args or kwds:
super(Int32, self).__init__(*args, **kwds)
pass
#message fields cannot be None, assign default values for those that are
if self.data is None:
self.data = 0
Expand Down
Loading

0 comments on commit 3542528

Please sign in to comment.