From 9680377f7385cf5a3a73dc4d8b68d14a99afabe9 Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Wed, 18 Apr 2018 01:44:30 +0000 Subject: [PATCH] Fix `Line too long (82/80) (line-too-long)` issue Signed-off-by: Yong Tang --- tensorflow/python/debug/wrappers/grpc_wrapper.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tensorflow/python/debug/wrappers/grpc_wrapper.py b/tensorflow/python/debug/wrappers/grpc_wrapper.py index 0001560..1f9c8fa 100644 --- a/tensorflow/python/debug/wrappers/grpc_wrapper.py +++ b/tensorflow/python/debug/wrappers/grpc_wrapper.py @@ -143,7 +143,8 @@ class GrpcDebugWrapperSession(framework.NonInteractiveDebugWrapperSession): def _signal_handler(unused_signal, unused_frame): while True: - response = six.moves.input("\nSIGINT received. Quit program? (Y/n): ").strip() + response = six.moves.input( + "\nSIGINT received. Quit program? (Y/n): ").strip() if response in ("", "Y", "y"): sys.exit(0) elif response in ("N", "n"): -- 2.7.4