Source code for open_source_template.main
"""
Copyright (c) 2025 MeteoSwiss, contributors listed in AUTHORS
Distributed under the terms of the BSD 3-Clause License.
SPDX-License-Identifier: BSD-3-Clause
"""
[docs]
def dummy_func(input_value: float) -> int:
"""
Dummy function.
:param input_value: Argument to the function.
:type input_value: float
:return: An integer.
:rtype: int
"""
return int(input_value)
[docs]
def another_dummy_func(input_value: int) -> float:
"""
Another dummy function.
:param input_value: Argument to the function.
:type input_value: int
:return: A float.
:rtype: float
"""
return float(input_value)