cs.tmuxutils: update imports, small format tweak
1 files changed, 6 insertions(+), 2 deletions(-)

M lib/python/cs/tmuxutils.py
M lib/python/cs/tmuxutils.py +6 -2
@@ 17,6 17,7 @@ from subprocess import CompletedProcess,
 import sys
 from tempfile import TemporaryDirectory
 from threading import Lock
+import time
 from time import sleep
 from typing import Callable, List, Optional
 

          
@@ 221,8 222,11 @@ class TmuxControl(HasFSPath, MultiOpenMi
   def startup_shutdown(self):
     ''' Open/close the control socket.
     '''
-    with Popen([self.TMUX, '-S', self.fspath, '-C'], stdin=PIPE,
-               stdout=PIPE) as P:
+    with Popen(
+        [self.TMUX, '-S', self.fspath, '-C'],
+        stdin=PIPE,
+        stdout=PIPE,
+    ) as P:
       try:
         pending = []  # queue of pending Results
         with stackattrs(self, rf=P.stdout, wf=P.stdin, pending=pending):