15 lines
247 B
Python
15 lines
247 B
Python
# © Crown-owned copyright 2023, Defence Science and Technology Laboratory UK
|
|
|
|
from primaite import getLogger
|
|
|
|
_LOGGER = getLogger(__name__)
|
|
|
|
|
|
def run() -> None:
|
|
"""Perform the full clean-up."""
|
|
pass
|
|
|
|
|
|
if __name__ == "__main__":
|
|
run()
|