Make biome happier

This commit is contained in:
2026-01-10 14:02:38 -06:00
parent 47f6bee75f
commit 7cecf5326d
2 changed files with 8 additions and 3 deletions

View File

@@ -6,6 +6,8 @@ export const executionContextSchema = z.object({
export type ExecutionContext = z.infer<typeof executionContextSchema>;
export function parseExecutionContext(env: Record<string, string | undefined>): ExecutionContext {
export function parseExecutionContext(
env: Record<string, string | undefined>,
): ExecutionContext {
return executionContextSchema.parse(env);
}