(err)
| 58 | """Prettifies the code at the given file path and handles errors and exceptions""" |
| 59 | |
| 60 | def handle_node_error(err): |
| 61 | print(err) |
| 62 | msg = "Node.js was not found in the default path. Please specify the location." |
| 63 | if ok_cancel_dialog(msg): |
| 64 | open_sublime_settings(window) |
| 65 | return None |
| 66 | |
| 67 | def handle_unknown_os_error(err): |
| 68 | print(err) |
no test coverage detected