Commit 2bf1bf90 authored by Guillaume Bouvignies's avatar Guillaume Bouvignies Committed by GitHub

Merge pull request #32 from kurtosis-tech/gbouv/remove-print-output

Output is now printed by the framework
parents f0fe8c1e a2df8e6d
...@@ -205,7 +205,7 @@ When you're happy with your changes: ...@@ -205,7 +205,7 @@ When you're happy with your changes:
<!------------------------ Only links below here --------------------------------> <!------------------------ Only links below here -------------------------------->
[docker-installation]: https://docs.docker.com/get-docker/ [docker-installation]: https://docs.docker.com/get-docker/
[kurtosis-cli-installation]: https://docs.kurtosis.com/install [kurtosis-cli-installation]: https://docs.kurtosis.com/install
[starlark-docs]: https://docs.kurtosis.com/reference/starlark-introduction [starlark-docs]: https://docs.kurtosis.com/explanations/starlark
[using-the-cli]: https://docs.kurtosis.com/cli [using-the-cli]: https://docs.kurtosis.com/cli
[prysm-issue]: https://github.com/prysmaticlabs/prysm/issues/11508 [prysm-issue]: https://github.com/prysmaticlabs/prysm/issues/11508
[nimbus-issue]: https://github.com/status-im/nimbus-eth2/issues/4193 [nimbus-issue]: https://github.com/status-im/nimbus-eth2/issues/4193
......
Package Architecture Package Architecture
=================== ===================
This repo is a Kurtosis package. To get general information on what a Kurtosis package is and how it works, visit [the Starlark documentation](https://docs.kurtosis.com/reference/starlark-introduction). This repo is a Kurtosis package. To get general information on what a Kurtosis package is and how it works, visit [the Starlark documentation](https://docs.kurtosis.com/explanations/starlark).
The overview of this particular package's operation is as follows: The overview of this particular package's operation is as follows:
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
### Changes ### Changes
- Updated `run(input_args)` to `run(args)` - Updated `run(input_args)` to `run(args)`
- Removed `print(output)` at the end as it is now printed by the framework
# 0.0.4 # 0.0.4
### Changes ### Changes
......
...@@ -89,7 +89,6 @@ def run(args): ...@@ -89,7 +89,6 @@ def run(args):
password = GRAFANA_PASSWORD password = GRAFANA_PASSWORD
) )
output = struct(grafana_info = grafana_info) output = struct(grafana_info = grafana_info)
print(output)
return output return output
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment