""" File consists of several functions for the calculation rules of FAIR Quality KPIs """ def test_function(): print("You called the test function.") def kpi_sum(*args): return sum(args[0]) # if arguments are handed over not as a list: sum(list(args)) if __name__ == "__main__": print( "This script contains functions for calculating the FAIR Quality KPIs. It is not to be executed independently." ) pass