mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 20:44:04 +00:00
pep8: Fix E701 violations.
This commit is contained in:
@@ -8,7 +8,8 @@ import sys
|
||||
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]
|
||||
|
||||
@@ -10,7 +10,8 @@ import logging
|
||||
import dateutil.parser
|
||||
import pytz
|
||||
from datetime import datetime, timedelta
|
||||
if False: from typing import List
|
||||
if False:
|
||||
from typing import List
|
||||
|
||||
logging.basicConfig(format="%(asctime)s %(levelname)s: %(message)s")
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
Reference in New Issue
Block a user