Skip to content

Commit

Permalink
Fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
ponyisi committed Jun 28, 2024
1 parent a82d1e1 commit cb47524
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion servicex/servicex_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def _load_ServiceXSpec(
else:
from importlib.metadata import entry_points

plugins = entry_points(group="servicex.queries")
plugins = entry_points(group="servicex.query")
for _ in plugins:
yaml.register_class(_.load())

Expand Down
2 changes: 1 addition & 1 deletion tests/test_databinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,4 +420,4 @@ def test_generic_query(codegen_list):

def test_entrypoint_import():
""" This will check that we have at least the Python transformer defined in servicex.query """
from servicex.query import Python # noqa
from servicex.query import PythonFunction # noqa

0 comments on commit cb47524

Please sign in to comment.