Create config from options.
(options=None)
| 73 | return default_mssql_cli_options |
| 74 | |
| 75 | def create_mssql_cli_config(options=None): |
| 76 | """ |
| 77 | Create config from options. |
| 78 | """ |
| 79 | if not options: |
| 80 | options = create_mssql_cli_options() |
| 81 | return get_config(options.mssqlclirc_file) |
| 82 | |
| 83 | def shutdown(connection): |
| 84 | connection.shutdown() |
no test coverage detected