(self, args:cmd2.Statement)
| 50 | |
| 51 | @with_argparser(parser) |
| 52 | def do_load(self, args:cmd2.Statement): |
| 53 | try: |
| 54 | Settings.load_settings(args.filename) |
| 55 | AnsiPrint.print_locale("config.loaded", filename=args.filename) |
| 56 | except MapXploreException as e: |
| 57 | AnsiPrint.print_error(e) |
| 58 | |
| 59 | |
| 60 |
nothing calls this directly
no test coverage detected