diff --git a/server/src/main/kotlin/com/larsreimann/api_editor/transformation/GroupAnnotationProcessor.kt b/server/src/main/kotlin/com/larsreimann/api_editor/transformation/GroupAnnotationProcessor.kt index 6da51b5ad..1bb60b95c 100644 --- a/server/src/main/kotlin/com/larsreimann/api_editor/transformation/GroupAnnotationProcessor.kt +++ b/server/src/main/kotlin/com/larsreimann/api_editor/transformation/GroupAnnotationProcessor.kt @@ -32,7 +32,6 @@ private fun MutablePythonFunction.processGroupAnnotations(module: MutablePythonM .filterIsInstance() .forEach { annotation -> val firstOccurrence = this.parameters.indexOfFirst { it.name in annotation.parameters } - println(parameters.toList().toString()) val groupedParameter = MutablePythonParameter( name = annotation.groupName.replaceFirstChar { it.lowercase() }, typeInDocs = annotation.groupName.replaceFirstChar { it.uppercase() },