From 02209c2db1b4399c17f50718cc19fb37461eba39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Davorin=20S=CC=8Cego?= Date: Sat, 11 Mar 2017 18:11:22 +0100 Subject: [PATCH] Oops, remove semicolons --- httpie/output/formatters/colors.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/httpie/output/formatters/colors.py b/httpie/output/formatters/colors.py index b07c6b5a..87174bf1 100644 --- a/httpie/output/formatters/colors.py +++ b/httpie/output/formatters/colors.py @@ -20,8 +20,8 @@ AVAILABLE_STYLES = set(pygments.styles.STYLE_MAP.keys()) AVAILABLE_STYLES.add('solarized') # This is the native style provided by the terminal emulator color scheme -PRESET_STYLE = 'preset'; -AVAILABLE_STYLES.add(PRESET_STYLE); +PRESET_STYLE = 'preset' +AVAILABLE_STYLES.add(PRESET_STYLE) if is_windows: # Colors on Windows via colorama don't look that @@ -63,7 +63,7 @@ class ColorFormatter(FormatterPlugin): self.formatter = fmt_class(style=style_class) if color_scheme == PRESET_STYLE: - self.http_lexer = PygmentsHttpLexer(); + self.http_lexer = PygmentsHttpLexer() else: self.http_lexer = HTTPLexer()