Skip to content

Commit

Permalink
Merge pull request #5590 from pypa/remove-pipenv/_compat.py
Browse files Browse the repository at this point in the history
Remove pipenv/_compat.py
  • Loading branch information
oz123 authored Feb 4, 2023
2 parents eee3eb5 + efad525 commit 6d420e4
Show file tree
Hide file tree
Showing 8 changed files with 61 additions and 248 deletions.
132 changes: 0 additions & 132 deletions pipenv/_compat.py

This file was deleted.

3 changes: 1 addition & 2 deletions pipenv/cli/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

from pipenv import environments
from pipenv.__version__ import __version__
from pipenv._compat import fix_utf8
from pipenv.cli.options import (
CONTEXT_SETTINGS,
PipenvGroup,
Expand Down Expand Up @@ -725,7 +724,7 @@ def scripts(state):
"{0:<{width}} {1}".format(name, script, width=first_column_width)
for name, script in scripts.items()
)
echo("\n".join(fix_utf8(line) for line in lines))
echo("\n".join(line for line in lines))


@cli.command(
Expand Down
Loading

0 comments on commit 6d420e4

Please sign in to comment.