Skip to content

Commit

Permalink
Remove uneeded str. NFC (emscripten-core#1170)
Browse files Browse the repository at this point in the history
These function already returns a string.
  • Loading branch information
sbc100 authored and shlomif committed Sep 29, 2023
1 parent 5991457 commit 8c09461
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 @@ -2709,7 +2709,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 8c09461

Please sign in to comment.