Skip to content

Commit 734376a

Browse files
committed
Fix type from emscripten-core#23648
1 parent 032adc9 commit 734376a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ def external_dict(self, skip_keys={}): # noqa
221221
if value != self.defaults.get(key) and key not in INTERNAL_SETTINGS and key not in skip_keys:
222222
external_settings[key] = value # noqa: PERF403
223223
if not self.attrs['STRICT']:
224-
# When not running in strict mode we also externalize all leggacy settings
224+
# When not running in strict mode we also externalize all legacy settings
225225
# (Since the external tools do process LEGACY_SETTINGS themselves)
226226
for key in self.legacy_settings:
227227
external_settings[key] = self.attrs[key]

0 commit comments

Comments
 (0)