Ignore more unused function args

This commit is contained in:
2Shirt 2023-08-26 17:25:06 -07:00
parent 657cc2e794
commit f216ba338a
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -800,6 +800,7 @@ def disk_surface_scan(state, test_objects, test_mode=False) -> None:
def disk_volume_utilization(state, test_objects, test_mode=False) -> None:
"""Check disk for full volumes."""
_ = test_mode
LOG.info('Disk Utilization')
for test in test_objects:
hw_volumes.check_volume_utilization(test)
@ -883,6 +884,8 @@ def main() -> None:
def post_system_info(state, test_objects, test_mode=False) -> None:
"""Post system info to osTicket."""
_ = test_mode
# Bail early
if state.ost.disabled:
return