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

Functions#

dummy_func(→ int)

Dummy function.

another_dummy_func(→ float)

Another dummy function.

Module Contents#

dummy_func(input_value: float) int[source]#

Dummy function.

Parameters:

input_value (float) – Argument to the function.

Returns:

An integer.

Return type:

int

another_dummy_func(input_value: int) float[source]#

Another dummy function.

Parameters:

input_value (int) – Argument to the function.

Returns:

A float.

Return type:

float