We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6442dea commit cf98ab5Copy full SHA for cf98ab5
bpython/curtsiesfrontend/parse.py
@@ -3,11 +3,13 @@
3
4
from bpython.lazyre import LazyReCompile
5
6
-from curtsies.termformatconstants import FG_COLORS, BG_COLORS, colors
+import curtsies.termformatconstants
7
+from curtsies.termformatconstants import FG_COLORS, BG_COLORS
8
from curtsies.formatstring import fmtstr, FmtStr
9
10
-cnames = dict(zip("krgybmcwd", colors + ("default",)))
11
+colors = curtsies.termformatconstants.colors + ("default", )
12
+cnames = dict(zip("krgybmcwd", colors))
13
14
15
def func_for_letter(l, default="k"):
0 commit comments