Skip to content

Commit

Permalink
save NSID from list to dict 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Slautin committed Aug 23, 2024
1 parent 74ca670 commit b73361f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SciFiReaders/readers/SID/Nsid_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def read_all(self, recursive=True, parent=None):

if recursive:
list_of_main = self._main_dsets
keys = ['Channel_{0:3}'.format(i) for i in range(len(list_of_main))]
keys = ['Channel_{:03}'.format(i) for i in range(len(list_of_main))]
else:
list_of_main = []
keys = []
Expand Down

0 comments on commit b73361f

Please sign in to comment.