Skip to content

Commit

Permalink
Apply formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasmasuch committed Jun 30, 2021
1 parent dd87065 commit e11f200
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lazydocs/generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit e11f200

Please sign in to comment.