Skip to content

Commit

Permalink
chg: dev: use None as default color set
Browse files Browse the repository at this point in the history
  • Loading branch information
rachmadaniHaryono committed Jun 4, 2020
1 parent 88b5b21 commit eb0dc1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions we_get/core/shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from we_get.core.commands import COMMANDS
from we_get.core.completer import WGCompleter
from we_get.core.style import we_get_prompt_style
from we_get.core.utils import color, msg_error, msg_item, printc, printc_raw, ITEM_COLOR_SET
from we_get.core.utils import color, msg_error, msg_item, printc, printc_raw

PROMPT_TOOLKIT_V2 = prompt_toolkit.__version__.split('.')[0] == '2'
if PROMPT_TOOLKIT_V2:
Expand All @@ -31,7 +31,7 @@ def __init__(self):
self.pargs = None
self.items = None
self.show_links = False
self.item_color = ITEM_COLOR_SET.copy()
self.item_color = None

def prompt_usage(self):
printc("white", "Usage: help")
Expand Down

0 comments on commit eb0dc1e

Please sign in to comment.