Goncalo287 / savi_t2

0 stars 0 forks source link

Most python files can't be called from the main menu #3

Closed Goncalo287 closed 8 months ago

Goncalo287 commented 8 months ago

Programs should be in functions to be called from the menu:

def main():
    print('Code goes here')

if __name__ == '__main__':
    main()
Goncalo287 commented 8 months ago

Related problems:

Goncalo287 commented 8 months ago

The programs were adapted and now work when called from the main menu and when run directly