Skip to content

Commit

Permalink
Oops, remove semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
dsego committed Mar 11, 2017
1 parent 9886f01 commit 02209c2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions httpie/output/formatters/colors.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
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
Expand Down Expand Up @@ -63,7 +63,7 @@ def __init__(self, env, explicit_json=False,
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()

Expand Down

0 comments on commit 02209c2

Please sign in to comment.