Fix class declaration formatting of WildcardTypeName
diff --git a/src/main/java/com/squareup/kotlinpoet/WildcardTypeName.kt b/src/main/java/com/squareup/kotlinpoet/WildcardTypeName.kt
index 66497f1..eb5c0a1 100644
--- a/src/main/java/com/squareup/kotlinpoet/WildcardTypeName.kt
+++ b/src/main/java/com/squareup/kotlinpoet/WildcardTypeName.kt
@@ -26,8 +26,8 @@
     upperBounds: List<TypeName>,
     lowerBounds: List<TypeName>,
     nullable: Boolean = false,
-    annotations: List<AnnotationSpec> = emptyList()) : TypeName(nullable, annotations
-) {
+    annotations: List<AnnotationSpec> = emptyList()
+) : TypeName(nullable, annotations) {
   val upperBounds = upperBounds.toImmutableList()
   val lowerBounds = lowerBounds.toImmutableList()