mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
Fix rich Console import
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
import logging
|
||||
|
||||
from pipenv.patched.pip._vendor import rich
|
||||
from pipenv.patched.pip._vendor.rich.console import Console
|
||||
|
||||
logging.basicConfig(level=logging.ERROR)
|
||||
|
||||
console = rich.console.Console()
|
||||
err = rich.console.Console(stderr=True)
|
||||
console = Console()
|
||||
err = Console(stderr=True)
|
||||
|
||||
Reference in New Issue
Block a user