Skip to content

Commit

Permalink
fix: remove duplicate noqa directives
Browse files Browse the repository at this point in the history
Signed-off-by: Oz Tiram <oz.tiram@gmail.com>
  • Loading branch information
oz123 committed Jan 10, 2025
1 parent b6fc7d8 commit 29fa24b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pipenv/routines/outdated.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,7 @@ def do_outdated(project, pypi_mirror=None, pre=False, clear=False):
package_info(package, str(version), str(updated_packages[norm_name]))
)
elif canonicalize_name(package) in outdated_packages:
skipped.append(
outdated_packages[canonicalize_name(package)] # noqa: PLC0206
)
skipped.append(outdated_packages[canonicalize_name(package)])
for package, old_version, new_version in skipped:
for category in project.get_package_categories():
name_in_pipfile = project.get_package_name_in_pipfile(
Expand Down

0 comments on commit 29fa24b

Please sign in to comment.