Skip to content

Commit

Permalink
fixup! Add support for with-wip
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbarker committed Aug 3, 2023
1 parent 23c2576 commit 7000788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generator/mavparse.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def set_description(self, description):
self.description = description

class MAVEnumEntry(object):
def __init__(self, name, value, description='', end_marker=False, autovalue=False, origin_file='', origin_line=0, has_location=False, wip=False):
def __init__(self, name, value, description='', wip=False, end_marker=False, autovalue=False, origin_file='', origin_line=0, has_location=False):
self.name = name
self.value = value
self.description = description
Expand Down

0 comments on commit 7000788

Please sign in to comment.