Jun-02-2020, 12:37 PM
I noticed you are passing an already called method as the target
proc = mp.Process(name="Clear + No Filename + Print Output", target=self.clrFileYesFnNoPrintoutput(host))the process itself should do the calling
proc = mp.Process(name="Clear + No Filename + Print Output", target=self.clrFileYesFnNoPrintoutput, , args=(host,))