Remove uneeded str. NFC (#1170)

These function already returns a string.
This commit is contained in:
Sam Clegg
2023-01-13 20:14:55 -08:00
committed by GitHub
parent 1eaaa4c5b4
commit ae2664b48f

View File

@@ -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', '')