pylint: enforce indentation (W0311) (#24039)

* pylint: enforce indentation (W0311)

* few more
old-commit-hash: 8af20af66ddaa6bc06d7f72f9134aa9afeed3ed8
This commit is contained in:
Adeeb Shihadeh
2022-03-24 23:23:29 -07:00
committed by GitHub
parent e929e32bc7
commit bd71c594a2
24 changed files with 191 additions and 192 deletions
+2 -2
View File
@@ -199,7 +199,7 @@ class NativeProcess(ManagerProcess):
def start(self) -> None:
# In case we only tried a non blocking stop we need to stop it before restarting
if self.shutting_down:
self.stop()
self.stop()
if self.proc is not None:
return
@@ -231,7 +231,7 @@ class PythonProcess(ManagerProcess):
def start(self) -> None:
# In case we only tried a non blocking stop we need to stop it before restarting
if self.shutting_down:
self.stop()
self.stop()
if self.proc is not None:
return