Skip to content

Commit

Permalink
Fix lint errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
taeold committed Jan 19, 2023
1 parent b428d62 commit 8ad2fd0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/deploy/functions/runtimes/python/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ class Delegate implements runtimes.RuntimeDelegate {
return Promise.resolve(() => Promise.resolve());
}

async build(): Promise<void> {}
async build(): Promise<void> {
return Promise.resolve();
}

async serveAdmin(port: number, envs: backend.EnvironmentVariables): Promise<() => Promise<void>> {
const modulesDir = await this.modulesDir();
Expand Down

0 comments on commit 8ad2fd0

Please sign in to comment.