Skip to content

Commit e11f200

Browse files
committed
Apply formatting
1 parent dd87065 commit e11f200

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/lazydocs/generation.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,9 @@ def _get_function_signature(
166166
else:
167167
# Remove only from part before the first =
168168
argument_split = argument.split("=")
169-
argument_split[0] = re.sub(r"([a-zA-Z0-9_]*?\.)", "", argument_split[0])
169+
argument_split[0] = re.sub(
170+
r"([a-zA-Z0-9_]*?\.)", "", argument_split[0]
171+
)
170172
argument = "=".join(argument_split)
171173
arguments.append(argument)
172174
else:

0 commit comments

Comments
 (0)