Can't seem to work out a way of closing the terminal tabs cleanly e.g. after setting the clock on the IC7300..currently using
# Close the terminal tab (works in some terminal emulators) if os.name == 'posix': # For UNIX-like systems os.system('exit') elif os.name == 'nt': # For Windows os.system('exit')
but it just ends the process without closing the tab..which I had to ask the AI confusebot
Can't seem to work out a way of closing the terminal tabs cleanly e.g. after setting the clock on the IC7300..currently using
# Close the terminal tab (works in some terminal emulators) if os.name == 'posix': # For UNIX-like systems os.system('exit') elif os.name == 'nt': # For Windows os.system('exit')but it just ends the process without closing the tab..which I had to ask the AI confusebot