From 694afba17d0ef76abe0dbaed26da185c9370418a Mon Sep 17 00:00:00 2001 From: cclauss Date: Sun, 14 Jan 2018 07:44:23 +0100 Subject: [PATCH] missing comma in __all__ tuple? --- pipenv/patched/crayons.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/patched/crayons.py b/pipenv/patched/crayons.py index ef97e786..7c9ff0d2 100644 --- a/pipenv/patched/crayons.py +++ b/pipenv/patched/crayons.py @@ -18,7 +18,7 @@ PY3 = sys.version_info[0] >= 3 __all__ = ( 'red', 'green', 'yellow', 'blue', - 'black', 'magenta', 'cyan', 'white', 'normal' + 'black', 'magenta', 'cyan', 'white', 'normal', 'clean', 'disable', )