Skip to content

Commit

Permalink
Remove uneeded str. NFC (#1170)
Browse files Browse the repository at this point in the history
These function already returns a string.
  • Loading branch information
sbc100 authored Jan 14, 2023
1 parent 1eaaa4c commit ae2664b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emsdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -2700,7 +2700,7 @@ def expand_sdk_name(name, activating):
if installed:
debug_print('activating currently installed SDK; not updating tot version')
return 'sdk-releases-%s-64bit' % installed
return str(find_tot_sdk())
return find_tot_sdk()

if '-upstream' in name:
name = name.replace('-upstream', '')
Expand Down

0 comments on commit ae2664b

Please sign in to comment.