Commit a0d94296 authored by Jakub Kicinski's avatar Jakub Kicinski

tools: ynl: remove trailing semicolon

Commit e8a6c515 ("tools: ynl: allow user to pass enum string
instead of scalar value") added a semicolon at the end of a line.
Reviewed-by: default avatarJiri Pirko <jiri@nvidia.com>
Link: https://lore.kernel.org/r/20240308192555.2550253-1-kuba@kernel.orgSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent fcac05da
......@@ -489,7 +489,7 @@ class YnlFamily(SpecFamily):
except (ValueError, TypeError) as e:
if 'enum' not in attr_spec:
raise e
return self._encode_enum(attr_spec, value);
return self._encode_enum(attr_spec, value)
def _add_attr(self, space, name, value, search_attrs):
try:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment