pep8: Fix E701 violations.

This commit is contained in:
Tommy Ip
2016-11-30 20:45:02 +00:00
parent ba7d4e7452
commit 46b7d54b3e
13 changed files with 36 additions and 17 deletions

View File

@@ -1,7 +1,8 @@
import time
# Avoid requiring the typing module to be installed
if False: from typing import Tuple
if False:
from typing import Tuple
def nagios_from_file(results_file):
# type: (str) -> Tuple[int, str]