Remove `skip-string-normalization` in Python formatter config
[babeltrace.git] / tests / data / cli / params / bt_plugin_params.py
... / ...
CommitLineData
1# SPDX-License-Identifier: GPL-2.0-only
2#
3# Copyright (C) 2019 EfficiOS Inc.
4#
5
6import bt2
7from cli_params_to_string import to_string
8
9
10@bt2.plugin_component_class
11class SinkThatPrintsParams(bt2._UserSinkComponent):
12 def __init__(self, config, params, obj):
13 self._add_input_port("in")
14 print(to_string(params))
15
16 def _user_consume(self):
17 raise bt2.Stop
18
19
20bt2.register_plugin(__name__, "params")
This page took 0.022064 seconds and 4 git commands to generate.