Skip to content

Commit 0ac248e

Browse files
authored
Fixed lint (#868)
1 parent bc10b5e commit 0ac248e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/machine-learning/machine-learning-api-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ export class MachineLearningApiClient {
253253
private getUrl(): Promise<string> {
254254
return this.getProjectIdPrefix()
255255
.then((projectIdPrefix) => {
256-
return `${ML_V1BETA2_API}/${this.projectIdPrefix}`;
256+
return `${ML_V1BETA2_API}/${projectIdPrefix}`;
257257
});
258258
}
259259

src/machine-learning/machine-learning.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,7 @@ export class Model {
285285
return false;
286286
}
287287

288+
/* eslint-disable-next-line @typescript-eslint/no-unused-vars */
288289
public waitForUnlocked(maxTimeSeconds?: number): Promise<void> {
289290
// Backend does not currently return locked models.
290291
// This will likely change in future.

0 commit comments

Comments
 (0)