We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54140ac commit e69fcc3Copy full SHA for e69fcc3
pytest_postgresql/executor.py
@@ -223,10 +223,10 @@ def running(self) -> bool:
223
status_code = subprocess.getstatusoutput(f'{self.executable} status -D "{self.datadir}"')[0]
224
return status_code == 0
225
226
- def _windows_terminate_process(self, sig: Optional[int] = None) -> None:
+ def _windows_terminate_process(self, _sig: Optional[int] = None) -> None:
227
"""Terminate process on Windows.
228
229
- :param sig: Signal parameter (unused on Windows but included for consistency)
+ :param _sig: Signal parameter (unused on Windows but included for consistency)
230
"""
231
if self.process is None:
232
return
0 commit comments