From: Yurii Karabas <1998uriyyo@gmail.com> Date: Wed, 26 Aug 2020 06:35:21 +0000 (+0300) Subject: Revert contains_standalone_comments function changes X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/4ca92ac91c944b252caf8c2265e5854f839a66f4?hp=1ebe9b70c5624da964364841e30a2e3ffe109c4e Revert contains_standalone_comments function changes --- diff --git a/src/black/__init__.py b/src/black/__init__.py index 954b93c..96dd0e4 100644 --- a/src/black/__init__.py +++ b/src/black/__init__.py @@ -1546,10 +1546,11 @@ class Line: def contains_standalone_comments(self, depth_limit: int = sys.maxsize) -> bool: """If so, needs to be split before emitting.""" - return any( - leaf.type == STANDALONE_COMMENT and leaf.bracket_depth <= depth_limit - for leaf in self.leaves - ) + for leaf in self.leaves: + if leaf.type == STANDALONE_COMMENT and leaf.bracket_depth <= depth_limit: + return True + + return False def contains_uncollapsable_type_comments(self) -> bool: ignored_ids = set()