Skip to content

Commit

Permalink
fix: Revert PipfileLock schema export
Browse files Browse the repository at this point in the history
  • Loading branch information
zharinov committed Aug 4, 2024
1 parent 1d3c317 commit 9d053d5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/manager/pipenv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const PipenvConstraintObject = z
.nullable()
.catch(null);

export const PipfileLock = Json.pipe(
const PipfileLock = Json.pipe(
z.object({
_meta: PythonConstraintObject,
default: PipenvConstraintObject,
Expand All @@ -75,7 +75,6 @@ export const PipfileLock = Json.pipe(
pipenvDefault: null,
pipenvDevelop: null,
});
export type PipfileLock = z.infer<typeof PipfileLock>;

const PipenvConstraint = z
.object({
Expand Down

0 comments on commit 9d053d5

Please sign in to comment.