Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
samukweku committed Oct 25, 2022
1 parent 8de787f commit 3168732
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion janitor/functions/conditional_join.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def conditional_join(
:param keep: Choose whether to return the first match,
last match or all matches. Default is `all`.
:param use_numba: Use numba, if installed, to accelerate the computation.
Default is `False`.
Applicable only to strictly non-equi joins. Default is `False`.
:returns: A pandas DataFrame of the two merged Pandas objects.
"""

Expand Down
2 changes: 1 addition & 1 deletion janitor/functions/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ def _index_dispatch(arg, df, axis): # noqa: F811
)
return arr
except Exception as exc:
raise KeyError(f"No match was returned for '{arg}'") from exc
raise KeyError(f"No match was returned for {arg}") from exc


@_select_index.register(list) # noqa: F811
Expand Down

0 comments on commit 3168732

Please sign in to comment.