Skip to content

Commit

Permalink
style(manager/poetry): cleanup utils
Browse files Browse the repository at this point in the history
  • Loading branch information
zeshuaro committed Aug 18, 2023
1 parent df101ea commit 89f8bbc
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions lib/modules/manager/poetry/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@ export function parsePoetry(
const res = PoetrySchemaToml.safeParse(fileContent);
if (res.success) {
return res.data;
} else {
logger.debug(
{ err: res.error, fileName },
'Error parsing poetry lockfile.'
);
}
logger.debug({ err: res.error, fileName }, 'Error parsing poetry lockfile.');
return null;
}

0 comments on commit 89f8bbc

Please sign in to comment.