Skip to content

Commit f65e926

Browse files
authored
Merge pull request #367 from codacy/hack/account-api-endpoints
fix: Remove extra }
2 parents 0d02771 + 63bc2d5 commit f65e926

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/src/main/scala/com/codacy/analysis/core/clients/CodacyClient.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class CodacyClient(credentials: Credentials, http: HttpHelper)(implicit context:
7878
credentials match {
7979
case token: APIToken =>
8080
sendEndOfResultsTo(
81-
s"/${token.provider.toString}}/${token.userName}/${token.projectName}/commit/${commitUuid.value}/resultsFinal")
81+
s"/${token.provider.toString}/${token.userName}/${token.projectName}/commit/${commitUuid.value}/resultsFinal")
8282
case _: ProjectToken => sendEndOfResultsTo(s"/commit/${commitUuid.value}/resultsFinal")
8383
}
8484
}

0 commit comments

Comments
 (0)