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

15 lines
247 B
Python
Raw Normal View History

# © Crown-owned copyright 2023, Defence Science and Technology Laboratory UK
2023-07-14 12:01:38 +01:00
from primaite import getLogger
_LOGGER = getLogger(__name__)
2023-07-14 12:01:38 +01:00
def run() -> None:
"""Perform the full clean-up."""
pass
if __name__ == "__main__":
run()