Skip to content

Commit

Permalink
forgot to commit
Browse files Browse the repository at this point in the history
  • Loading branch information
baxpr committed Aug 7, 2024
1 parent d667701 commit 4a9e2c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/update_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

# Verify that this is a Philips scan before applying the Philips-
# specific fixes for TotalReadoutTime and PhaseEncodingDirection
if jobj['Manufacturer'] != 'Philips':
if not jobj['Manufacturer'].startswith('Philips'):
raise Exception(f'Manufacturer is {jobj["Manufacturer"]} - expecting Philips')

jobj['TotalReadoutTime'] = jobj['EstimatedTotalReadoutTime']
Expand Down

0 comments on commit 4a9e2c4

Please sign in to comment.