Skip to content

Commit

Permalink
BUG: chained index
Browse files Browse the repository at this point in the history
  • Loading branch information
jklenzing committed Jan 5, 2023
1 parent d117296 commit 6ffe739
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pysatCDF/_cdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ def _process_return_multi_z_attr(self, data, attr_names, var_names,
chars.append('*')
self.meta[var_name][attr_name] = ''.join(chars).rstrip()
else:
self.meta[var_name][attr_name] = data[i, 0:num_e]
self.meta[var_name][attr_name] = data[i][0:num_e]

def to_pysat(self, flatten_twod=True, units_label='UNITS',
name_label='LONG_NAME', fill_label='FILLVAL',
Expand Down

0 comments on commit 6ffe739

Please sign in to comment.