feat: Ensure console cursor visibility after script execution

This commit is contained in:
Peter Wood
2025-12-29 01:10:12 +00:00
parent 5b31d616f6
commit 6760b74b97

View File

@@ -636,4 +636,7 @@ def main():
if __name__ == "__main__": if __name__ == "__main__":
main() try:
main()
finally:
console.show_cursor(True)