Skip to content

Commit

Permalink
revert trailing commas and imports
Browse files Browse the repository at this point in the history
  • Loading branch information
thesandipv authored and ChrisKruegerDev committed Jun 10, 2024
1 parent e8a216b commit ffdd47d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package app.moviebase.tmdb.api

import app.moviebase.tmdb.core.endPointV3
import app.moviebase.tmdb.model.TmdbConfiguration
import app.moviebase.tmdb.core.endPointV3
import app.moviebase.tmdb.model.TmdbConfigurationCountry
import io.ktor.client.*
import io.ktor.client.call.*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import kotlinx.serialization.Serializable
@Serializable
data class TmdbConfiguration(
@SerialName("images") val images: TmdbImagesConfiguration,
@SerialName("change_keys") val changeKeys: List<String> = emptyList(),
@SerialName("change_keys") val changeKeys: List<String> = emptyList()
)

@Serializable
Expand All @@ -17,7 +17,7 @@ data class TmdbImagesConfiguration(
@SerialName("poster_sizes") val posterSizes: List<String> = emptyList(),
@SerialName("logo_sizes") val logoSizes: List<String> = emptyList(),
@SerialName("profile_sizes") val profileSizes: List<String> = emptyList(),
@SerialName("still_sizes") val stillSizes: List<String> = emptyList(),
@SerialName("still_sizes") val stillSizes: List<String> = emptyList()
)

@Serializable
Expand Down

0 comments on commit ffdd47d

Please sign in to comment.