Skip to content

Commit 88e0c51

Browse files
committed
fixed linter issues
1 parent 5adb323 commit 88e0c51

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

kotlin/services/mediaconvert/src/main/kotlin/com/kotlin/mediaconvert/CreateJob.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ suspend fun main(args: Array<String>) {
5757

5858
val mcRoleARN = args[0]
5959
val fileInput = args[1]
60-
val mcClient = MediaConvertClient.fromEnvironment { region = "us-west-2" }
60+
val mcClient = MediaConvertClient.fromEnvironment { region = "us-west-2" }
6161
val id = createMediaJob(mcClient, mcRoleARN, fileInput)
6262
println("MediaConvert job $id was successfully created!")
6363
}

kotlin/services/mediaconvert/src/main/kotlin/com/kotlin/mediaconvert/GetJob.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ suspend fun main(args: Array<String>) {
3131
}
3232

3333
val jobId = args[0]
34-
val mcClient = MediaConvertClient.fromEnvironment { region = "us-west-2" }
34+
val mcClient = MediaConvertClient.fromEnvironment { region = "us-west-2" }
3535
getSpecificJob(mcClient, jobId)
3636
}
3737

kotlin/services/mediaconvert/src/main/kotlin/com/kotlin/mediaconvert/ListJobs.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ For more information, see the following documentation topic:
2121
https://docs.aws.amazon.com/sdk-for-kotlin/latest/developer-guide/setup.html
2222
*/
2323
suspend fun main() {
24-
val mcClient = MediaConvertClient.fromEnvironment { region = "us-west-2" }
24+
val mcClient = MediaConvertClient.fromEnvironment { region = "us-west-2" }
2525
listCompleteJobs(mcClient)
2626
}
2727

0 commit comments

Comments
 (0)