From 9b161072c13c0ec32c9ca9bd48fad17f781a56d4 Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Wed, 23 Feb 2022 19:41:42 -0800 Subject: [PATCH] fix new formatting issue (#2895) Race between #2889 and another PR. --- src/black/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/black/__init__.py b/src/black/__init__.py index c1b9895..c4ec99b 100644 --- a/src/black/__init__.py +++ b/src/black/__init__.py @@ -477,7 +477,7 @@ def main( # noqa: C901 user_level_config = str(find_user_pyproject_toml()) if config == user_level_config: out( - f"Using configuration from user-level config at " + "Using configuration from user-level config at " f"'{user_level_config}'.", fg="blue", ) -- 2.39.2