Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Mar 25, 2016
1 parent c9d17b2 commit a89b2d8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions color_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -1418,14 +1418,14 @@ def payload(self):
insert_scope = util.get_scope_completion(view, rules)
scope_okay = (
scope and
len(sels) == 1 and sels[0].size() == 0
and view.score_selector(sels[0].begin(), scope)
len(sels) == 1 and sels[0].size() == 0 and
view.score_selector(sels[0].begin(), scope)
)
insert_scope_okay = (
scope_okay or (
insert_scope and
len(sels) == 1 and sels[0].size() == 0
and view.score_selector(sels[0].begin(), insert_scope)
len(sels) == 1 and sels[0].size() == 0 and
view.score_selector(sels[0].begin(), insert_scope)
)
)

Expand Down

0 comments on commit a89b2d8

Please sign in to comment.