Files
PrimAITE/src/primaite/setup/old_installation_clean_up.py

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()