From e11f200a159e480129406a7fa2b345dfa8ccff4d Mon Sep 17 00:00:00 2001 From: Lukas Masuch Date: Wed, 30 Jun 2021 09:16:51 +0000 Subject: [PATCH] Apply formatting --- src/lazydocs/generation.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lazydocs/generation.py b/src/lazydocs/generation.py index 8a0f747..d1800bc 100755 --- a/src/lazydocs/generation.py +++ b/src/lazydocs/generation.py @@ -166,7 +166,9 @@ def _get_function_signature( else: # Remove only from part before the first = argument_split = argument.split("=") - argument_split[0] = re.sub(r"([a-zA-Z0-9_]*?\.)", "", argument_split[0]) + argument_split[0] = re.sub( + r"([a-zA-Z0-9_]*?\.)", "", argument_split[0] + ) argument = "=".join(argument_split) arguments.append(argument) else: