Skip to content

Commit

Permalink
style: apply autopep8
Browse files Browse the repository at this point in the history
  • Loading branch information
kmnhan committed Nov 5, 2024
1 parent c3b5ae5 commit 1389334
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions igor2/binarywave.py
Original file line number Diff line number Diff line change
Expand Up @@ -758,40 +758,40 @@ def post_unpack(self, parents, data):
name='Wave5',
fields=[
_Field(
BinHeader5, 'bin_header',
help='Binary wave header'),
BinHeader5, 'bin_header',
help='Binary wave header'),
_Field(
WaveHeader5, 'wave_header',
help='Wave header'),
WaveHeader5, 'wave_header',
help='Wave header'),
DynamicWaveDataField5(
'f', 'wData',
help='The start of the array of waveform data.',
count=0, array=True),
'f', 'wData',
help='The start of the array of waveform data.',
count=0, array=True),
DynamicDependencyFormulaField(
'c', 'formula',
help='Optional wave dependency formula.',
count=0, array=True),
'c', 'formula',
help='Optional wave dependency formula.',
count=0, array=True),
DynamicWaveNoteField(
'c', 'note',
help='Optional wave note data.', count=0,
array=True),
'c', 'note',
help='Optional wave note data.', count=0,
array=True),
DynamicDataUnitsField(
'c', 'data_units',
help='Optional extended data units data.',
count=0, array=True),
'c', 'data_units',
help='Optional extended data units data.',
count=0, array=True),
DynamicDimensionUnitsField(
'c', 'dimension_units',
help='Optional dimension label data',
count=0, array=True),
'c', 'dimension_units',
help='Optional dimension label data',
count=0, array=True),
DynamicLabelsField(
'c', 'labels',
help="Optional dimension label data",
count=0, array=True),
'c', 'labels',
help="Optional dimension label data",
count=0, array=True),
DynamicStringIndicesDataField(
'P', 'sIndices',
help='Dynamic string indices for text waves.',
count=0, array=True),
])
'P', 'sIndices',
help='Dynamic string indices for text waves.',
count=0, array=True),
])

Wave = _DynamicStructure(
name='Wave',
Expand Down

0 comments on commit 1389334

Please sign in to comment.