Skip to content

Commit

Permalink
make flake8 happy after last fix made lines too ling
Browse files Browse the repository at this point in the history
  • Loading branch information
hegner committed Aug 22, 2023
1 parent 4b635d4 commit faca42c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/podio/podio_config_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ def _parse_with_regexps(string, regexps_callbacks):
def _full_array_conv(result):
"""MemberVariable construction for array members with a docstring"""
typ, size, name, def_val, unit, comment = result.groups()
return MemberVariable(name=name, array_type=typ, array_size=size, description=comment.strip(), unit=unit, default_val=def_val)
return MemberVariable(name=name, array_type=typ, array_size=size, description=comment.strip(),
unit=unit, default_val=def_val)

@staticmethod
def _full_member_conv(result):
Expand Down

0 comments on commit faca42c

Please sign in to comment.