Skip to content

Commit

Permalink
orthology.translate_df: forward properly kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
deeenes committed Oct 5, 2023
1 parent 72358e7 commit bccbaef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pypath/utils/orthology.py
Original file line number Diff line number Diff line change
Expand Up @@ -2256,5 +2256,6 @@ def translate_df(

args = locals().copy()
args.pop('manager')
args.pop('kwargs')

return manager.translate_df(**args)
return manager.translate_df(**args, **kwargs)

0 comments on commit bccbaef

Please sign in to comment.