From c79c8b0bc76a4b5fa61d34bcbe1b6ef52717fbac Mon Sep 17 00:00:00 2001 From: "Francisco Blas (klondike) Izquierdo Riera" Date: Tue, 3 Mar 2015 13:35:08 +0100 Subject: [PATCH] Fix more pep8 complaints --- libnmap/process.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libnmap/process.py b/libnmap/process.py index 95c287f..51a362d 100644 --- a/libnmap/process.py +++ b/libnmap/process.py @@ -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): """