style: fix lint (CI)

This commit is contained in:
usbharu 2024-09-11 06:58:58 +00:00 committed by github-actions[bot]
parent 57430b7e4a
commit 88ab8d23df
1 changed files with 29 additions and 31 deletions

View File

@ -160,36 +160,34 @@ class Actor(
override fun toString(): String { override fun toString(): String {
return "Actor(" + return "Actor(" +
"id=$id, " + "id=$id, " +
"name=$name, " + "name=$name, " +
"domain=$domain, " + "domain=$domain, " +
"inbox=$inbox, " + "inbox=$inbox, " +
"outbox=$outbox, " + "outbox=$outbox, " +
"url=$url, " + "url=$url, " +
"publicKey=$publicKey, " + "publicKey=$publicKey, " +
"privateKey=$privateKey, " + "privateKey=$privateKey, " +
"createdAt=$createdAt, " + "createdAt=$createdAt, " +
"keyId=$keyId, " + "keyId=$keyId, " +
"followersEndpoint=$followersEndpoint, " + "followersEndpoint=$followersEndpoint, " +
"followingEndpoint=$followingEndpoint, " + "followingEndpoint=$followingEndpoint, " +
"instance=$instance, " + "instance=$instance, " +
"locked=$locked, " + "locked=$locked, " +
"followersCount=$followersCount, " + "followersCount=$followersCount, " +
"followingCount=$followingCount, " + "followingCount=$followingCount, " +
"postsCount=$postsCount, " + "postsCount=$postsCount, " +
"lastPostAt=$lastPostAt, " + "lastPostAt=$lastPostAt, " +
"lastUpdateAt=$lastUpdateAt, " + "lastUpdateAt=$lastUpdateAt, " +
"banner=$banner, " + "banner=$banner, " +
"icon=$icon, " + "icon=$icon, " +
"suspend=$suspend, " + "suspend=$suspend, " +
"alsoKnownAs=$alsoKnownAs, " + "alsoKnownAs=$alsoKnownAs, " +
"moveTo=$moveTo, " + "moveTo=$moveTo, " +
"emojis=$emojis, " + "emojis=$emojis, " +
"description=$description, " + "description=$description, " +
"screenName=$screenName, " + "screenName=$screenName, " +
"deleted=$deleted" + "deleted=$deleted" +
")" ")"
} }
} }