Skip to content

Commit

Permalink
Fix xtrigger entry point example
Browse files Browse the repository at this point in the history
  • Loading branch information
MetRonnie committed Feb 15, 2024
1 parent 5ecefd3 commit d88206d
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/plugins/xtriggers/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,14 @@ entry points. Each xtrigger is registered individually.
[options.entry_points]
cylc.xtriggers =
foo = my_package.foo:foo
bar = my_package.foo:bar
baz = my_package.baz:baz
foo = my_package.foo
bar = my_package.foo
baz = my_package.baz
.. code-block:: toml
:caption: ``pyproject.toml``
[project.entry-points."cylc.xtriggers"]
foo = "my_package.foo:foo"
bar = "my_package.foo:bar"
baz = "my_package.baz:baz"
foo = "my_package.foo"
bar = "my_package.foo"
baz = "my_package.baz"

0 comments on commit d88206d

Please sign in to comment.