We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 032adc9 commit 734376aCopy full SHA for 734376a
tools/settings.py
@@ -221,7 +221,7 @@ def external_dict(self, skip_keys={}): # noqa
221
if value != self.defaults.get(key) and key not in INTERNAL_SETTINGS and key not in skip_keys:
222
external_settings[key] = value # noqa: PERF403
223
if not self.attrs['STRICT']:
224
- # When not running in strict mode we also externalize all leggacy settings
+ # When not running in strict mode we also externalize all legacy settings
225
# (Since the external tools do process LEGACY_SETTINGS themselves)
226
for key in self.legacy_settings:
227
external_settings[key] = self.attrs[key]
0 commit comments