diff --git a/setup.py b/setup.py index 18d13946..7d0e7451 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ "libnetfilter-queue-dev": {"debian": "sudo apt-get install " "build-essential python-dev " "libnetfilter-queue-dev"}, - "clamav": {"debian" : "sudo apt-get install clamav"} + "clamav": {"debian": "sudo apt-get install clamav"} } @@ -145,7 +145,10 @@ def verify_installation(output): Returns: TYPE: bool """ - found = re.findall(r'([0-9]+\supgraded).*([0-9]+\snewly installed)', output) + found = re.findall( + r'([0-9]+\supgraded).*([0-9]+\snewly installed)', + output + ) upgraded = found[0][0] installed = found[0][1]