Skip to content

Commit

Permalink
Fix more pep8 complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
klondi committed Mar 3, 2015
1 parent 6ee3e6c commit c79c8b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libnmap/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,8 +358,8 @@ def has_terminated(self):
:return: True if nmap process is not running anymore.
"""
return (self.state == self.DONE or self.state == self.FAILED
or self.state == self.CANCELLED)
return (self.state == self.DONE or self.state == self.FAILED or
self.state == self.CANCELLED)

def has_failed(self):
"""
Expand Down

0 comments on commit c79c8b0

Please sign in to comment.