Fix `Line too long (82/80) (line-too-long)` issue
authorYong Tang <yong.tang.github@outlook.com>
Wed, 18 Apr 2018 01:44:30 +0000 (01:44 +0000)
committerYong Tang <yong.tang.github@outlook.com>
Wed, 18 Apr 2018 18:05:41 +0000 (18:05 +0000)
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
tensorflow/python/debug/wrappers/grpc_wrapper.py

index 0001560..1f9c8fa 100644 (file)
@@ -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"):