From 3497c2dfe95791c0ee489d910e13bec312e4552b Mon Sep 17 00:00:00 2001 From: Kit Langton Date: Wed, 24 Jun 2026 22:46:29 -0400 Subject: [PATCH] refactor(schema): simplify pty imports --- packages/schema/src/pty.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/schema/src/pty.ts b/packages/schema/src/pty.ts index 4bb2810d18..9d6120ccde 100644 --- a/packages/schema/src/pty.ts +++ b/packages/schema/src/pty.ts @@ -3,8 +3,7 @@ export * as Pty from "./pty" import { Schema } from "effect" import { define, inventory } from "./event" import { ascending } from "./identifier" -import { NonNegativeInt, PositiveInt } from "./schema" -import { statics } from "./schema" +import { NonNegativeInt, PositiveInt, statics } from "./schema" const IDSchema = Schema.String.check(Schema.isStartsWith("pty")).pipe(Schema.brand("PtyID"))