Skip to content

Commit

Permalink
Merge pull request #72 from XENONnT/fix_straxen_protocol
Browse files Browse the repository at this point in the history
call filter_kwargs with correct arg order
  • Loading branch information
jmosbacher authored Feb 18, 2023
2 parents c416594 + ddf3d1b commit ee808b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xedocs/_straxen_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def xedocs_protocol(

accessor = getattr(schema, db)

kwargs = straxen.filter_kwargs(labels, accessor.find_docs)
kwargs = straxen.filter_kwargs(accessor.find_docs, labels)

if isinstance(sort, (str,list)):
kwargs["sort"] = sort
Expand Down

0 comments on commit ee808b4

Please sign in to comment.