Skip to content

Commit

Permalink
lint-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Jan 14, 2023
1 parent 90252a3 commit 934e488
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/modules/manager/poetry/extract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ function extractFromSection(
}

const pep503NormalizeRegex = regEx(/[-_.]+/g);
const packageName = depName.toLowerCase().replace(pep503NormalizeRegex, "-");
const packageName = depName
.toLowerCase()
.replace(pep503NormalizeRegex, '-');
let skipReason: SkipReason | null = null;
let currentValue = sectionContent[depName];
let nestedVersion = false;
Expand Down

0 comments on commit 934e488

Please sign in to comment.