Skip to content

Commit

Permalink
fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
BenediktMKuehne committed Nov 21, 2023
1 parent 803bdbf commit 625245b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion embark/embark/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def cleanup_charfield(charfield):
charfield = (charfield[:16] + '..') if len(charfield) > 18 else charfield
# clean-up for architecture descriptions
elif isinstance(charfield, dict):
for key_,value_ in charfield.items():
for key_, value_ in charfield.items():
if value_.lower() == 'el':
charfield = f"{key_} - Little Endian"
elif value_.lower() == 'eb':
Expand Down

0 comments on commit 625245b

Please sign in to comment.