From 34d5d3b1c5e1532e99432cf173ef8157dcfe0f14 Mon Sep 17 00:00:00 2001 From: hauntsaninja Date: Wed, 1 Nov 2023 12:56:17 -0700 Subject: [PATCH] okay mypyc --- 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 0800f74c4fe..71823e001fe 100644 --- a/src/black/__init__.py +++ b/src/black/__init__.py @@ -652,7 +652,7 @@ def get_sources( ) continue - normalized_path = normalize_path_maybe_ignore(path, root, report) + normalized_path: str | None = normalize_path_maybe_ignore(path, root, report) if normalized_path is None: if verbose: out(f'Skipping invalid source: "{normalized_path}"', fg="red")