From 71bdd727a826e36bc19213c47a324b872439478f Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C5=81ukasz=20Langa?= Date: Fri, 17 Aug 2018 10:29:19 -0700 Subject: [PATCH] Put missing blank lines after return statements. --- black.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/black.py b/black.py index 9b363d5..46f9c92 100644 --- a/black.py +++ b/black.py @@ -2545,6 +2545,7 @@ def format_float_or_int_string(text: str, allow_underscores: bool) -> str: """Formats a float string like "1.0".""" if "." not in text: return format_int_string(text, allow_underscores) + before, after = text.split(".") before = format_int_string(before, allow_underscores) if before else "0" after = format_int_string(after, allow_underscores) if after else "0" @@ -2558,10 +2559,12 @@ def format_int_string(text: str, allow_underscores: bool) -> str: """ if not allow_underscores: return text + text = text.replace("_", "") if len(text) <= 6: # No underscores for numbers <= 6 digits long. return text + return format(int(text), "3_") -- 2.39.2