Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
ctb committed Dec 16, 2024
1 parent ee2fd5d commit af34f0b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/python/tests/sourmash_tst_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,9 @@ def _runscript(scriptname):
namespace = {"__name__": "__main__"}
namespace["sys"] = globals()["sys"]

entry_points = importlib.metadata.entry_points(group="console_scripts",
name="sourmash")
entry_points = importlib.metadata.entry_points(
group="console_scripts", name="sourmash"
)
assert len(entry_points) == 1
smash_cli = tuple(entry_points)[0].load()
smash_cli()
Expand Down

0 comments on commit af34f0b

Please sign in to comment.