##// END OF EJS Templates
typing: disable a few incorrect warnings in pywatchman...
Matt Harbison -
r50752:ab32fd84 default
parent child Browse files
Show More
@@ -986,8 +986,12 b' class client:'
986 # if invoked via an application with graphical user interface,
986 # if invoked via an application with graphical user interface,
987 # this call will cause a brief command window pop-up.
987 # this call will cause a brief command window pop-up.
988 # Using the flag STARTF_USESHOWWINDOW to avoid this behavior.
988 # Using the flag STARTF_USESHOWWINDOW to avoid this behavior.
989
990 # pytype: disable=module-attr
989 startupinfo = subprocess.STARTUPINFO()
991 startupinfo = subprocess.STARTUPINFO()
990 startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
992 startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
993 # pytype: enable=module-attr
994
991 args["startupinfo"] = startupinfo
995 args["startupinfo"] = startupinfo
992
996
993 p = subprocess.Popen(cmd, **args)
997 p = subprocess.Popen(cmd, **args)
@@ -1024,7 +1028,11 b' class client:'
1024 if self.transport == CLIProcessTransport:
1028 if self.transport == CLIProcessTransport:
1025 kwargs["binpath"] = self.binpath
1029 kwargs["binpath"] = self.binpath
1026
1030
1031 # Only CLIProcessTransport has the binpath kwarg
1032 # pytype: disable=wrong-keyword-args
1027 self.tport = self.transport(self.sockpath, self.timeout, **kwargs)
1033 self.tport = self.transport(self.sockpath, self.timeout, **kwargs)
1034 # pytype: enable=wrong-keyword-args
1035
1028 self.sendConn = self.sendCodec(self.tport)
1036 self.sendConn = self.sendCodec(self.tport)
1029 self.recvConn = self.recvCodec(self.tport)
1037 self.recvConn = self.recvCodec(self.tport)
1030 self.pid = os.getpid()
1038 self.pid = os.getpid()
General Comments 0
You need to be logged in to leave comments. Login now