Skip to content

Commit 3efe193

Browse files
committed
fix pep8 problems
1 parent 7c84be6 commit 3efe193

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nibabel/nicom/csareader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def read(csa_str):
100100
csa_dict['n_tags'], csa_dict['check'] = up_str.unpack('2I')
101101
if not 0 < csa_dict['n_tags'] <= MAX_CSA_ITEMS:
102102
raise CSAReadError('Number of tags `t` should be '
103-
'0 < t <= %d. Instead found %d tags.'
103+
'0 < t <= %d. Instead found %d tags.'
104104
% (MAX_CSA_ITEMS, csa_dict['n_tags']))
105105
for tag_no in range(csa_dict['n_tags']):
106106
name, vm, vr, syngodt, n_items, last3 = \

0 commit comments

Comments
 (0)