8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fdacd3 commit 7c7e7bfCopy full SHA for 7c7e7bf
README.md
@@ -207,11 +207,11 @@ For this purpose, we provide the `spin.util.extend_cmd` decorator.
207
Here, we show how to add a `--extra` flag to the existing `build` function:
208
209
```python
210
-from spin.cmds import meson
+import spin
211
212
213
@click.option("-e", "--extra", help="Extra test flag")
214
-@util.extend_command(spin.cmds.meson.build)
+@spin.util.extend_command(spin.cmds.meson.build)
215
def build_extend(*, parent_callback, extra=None, **kwargs):
216
"""
217
This version of build also provides the EXTRA flag, that can be used
0 commit comments