From 9296bd4e3f8287d40f527583bb0822876d3766b2 Mon Sep 17 00:00:00 2001 From: ember91 <31469580+ember91@users.noreply.github.com> Date: Fri, 2 Aug 2024 17:39:27 +0200 Subject: [PATCH] Fix a typo (#12633) Co-authored-by: Emil Berg --- python/ruff-ecosystem/ruff_ecosystem/projects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ruff-ecosystem/ruff_ecosystem/projects.py b/python/ruff-ecosystem/ruff_ecosystem/projects.py index 996a6adb9f..63670a0be2 100644 --- a/python/ruff-ecosystem/ruff_ecosystem/projects.py +++ b/python/ruff-ecosystem/ruff_ecosystem/projects.py @@ -64,7 +64,7 @@ class ConfigOverrides(Serializable): The key describes a member to override in the toml file; '.' may be used to indicate a nested value e.g. `format.quote-style`. - If a Ruff configuration file does not exist and overrides are provided, it will be createad. + If a Ruff configuration file does not exist and overrides are provided, it will be created. """ always: dict[str, Any] = field(default_factory=dict)