From f3bb22a828495c66d8d2dae1edf45e15fc2daddb Mon Sep 17 00:00:00 2001 From: Min ho Kim Date: Tue, 2 Jul 2019 00:42:30 +1000 Subject: [PATCH] Fix typo (#916) --- black.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/black.py b/black.py index 779e9d0..29d56c9 100644 --- a/black.py +++ b/black.py @@ -3152,7 +3152,7 @@ def ensure_visible(leaf: Leaf) -> None: """Make sure parentheses are visible. They could be invisible as part of some statements (see - :func:`normalize_invible_parens` and :func:`visit_import_from`). + :func:`normalize_invisible_parens` and :func:`visit_import_from`). """ if leaf.type == token.LPAR: leaf.value = "(" -- 2.39.2