Skip to content

Commit

Permalink
fix error in noamd: TypeError: entry_points() missing 1 required pos…
Browse files Browse the repository at this point in the history
…itional argument: '_'
  • Loading branch information
RubelMozumder committed Dec 5, 2023
1 parent df15f8c commit 7ab41a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pynxtools/dataconverter/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
# If importlib_metadata is not present
# we provide a dummy function just returning an empty list.
# pylint: disable=W0613
def entry_points(group, _):
def entry_points(group):
"""Dummy function for importlib_metadata"""
return []

Expand Down

0 comments on commit 7ab41a7

Please sign in to comment.