mirror of
https://github.com/httpie/cli.git
synced 2025-01-23 22:08:47 +01:00
Oops, remove semicolons
This commit is contained in:
parent
9886f01f91
commit
02209c2db1
@ -20,8 +20,8 @@ AVAILABLE_STYLES = set(pygments.styles.STYLE_MAP.keys())
|
|||||||
AVAILABLE_STYLES.add('solarized')
|
AVAILABLE_STYLES.add('solarized')
|
||||||
|
|
||||||
# This is the native style provided by the terminal emulator color scheme
|
# This is the native style provided by the terminal emulator color scheme
|
||||||
PRESET_STYLE = 'preset';
|
PRESET_STYLE = 'preset'
|
||||||
AVAILABLE_STYLES.add(PRESET_STYLE);
|
AVAILABLE_STYLES.add(PRESET_STYLE)
|
||||||
|
|
||||||
if is_windows:
|
if is_windows:
|
||||||
# Colors on Windows via colorama don't look that
|
# Colors on Windows via colorama don't look that
|
||||||
@ -63,7 +63,7 @@ class ColorFormatter(FormatterPlugin):
|
|||||||
self.formatter = fmt_class(style=style_class)
|
self.formatter = fmt_class(style=style_class)
|
||||||
|
|
||||||
if color_scheme == PRESET_STYLE:
|
if color_scheme == PRESET_STYLE:
|
||||||
self.http_lexer = PygmentsHttpLexer();
|
self.http_lexer = PygmentsHttpLexer()
|
||||||
else:
|
else:
|
||||||
self.http_lexer = HTTPLexer()
|
self.http_lexer = HTTPLexer()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user