Skip to content

Commit

Permalink
Improve name tools docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
ejohb committed Oct 12, 2024
1 parent e85221a commit bc633ea
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions fmtr/tools/name_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,11 @@ def get_right():


def get(sep: str | None = '-') -> str | Tuple[str, str]:
"""
Get a random memorable name
"""
left_right = random.choice(get_left()), random.choice(get_right())
if not sep:
return left_right
Expand Down

0 comments on commit bc633ea

Please sign in to comment.