()
| 4396 | |
| 4397 | |
| 4398 | def get_users(): |
| 4399 | users = ['default'] + [fn.split('-')[0] for fn in os.listdir(get_data_dir()) if '-stats.txt' in fn] |
| 4400 | if 'Readme' in users: users.remove('Readme') |
| 4401 | return users |
| 4402 | |
| 4403 | # there are 4 event loops: |
| 4404 | # on_mouse_press: allows the user to use the mouse (LMB and RMB) instead of keys |
no test coverage detected