Skip to content

Commit 8ad2fd0

Browse files
committed
Fix lint errors.
1 parent b428d62 commit 8ad2fd0

File tree

1 file changed

+3
-1
lines changed
  • src/deploy/functions/runtimes/python

1 file changed

+3
-1
lines changed

src/deploy/functions/runtimes/python/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,9 @@ class Delegate implements runtimes.RuntimeDelegate {
103103
return Promise.resolve(() => Promise.resolve());
104104
}
105105

106-
async build(): Promise<void> {}
106+
async build(): Promise<void> {
107+
return Promise.resolve();
108+
}
107109

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

0 commit comments

Comments
 (0)