set_global_opts() got an unexpected keyword argument 'theme'
时间: 2023-11-18 18:05:51 浏览: 111
simple_opts.sh:简单的 Bash 选项解析器
The error message you're seeing suggests that the `set_global_opts()` function is not recognizing the keyword argument `theme`. This may be because the version of the library you're using doesn't support this argument, or there may be a typo in your code.
If you're using a version of the library that doesn't support the `theme` argument, you could try updating to a newer version. Alternatively, you could try removing the `theme` argument from your code and see if that resolves the issue.
If you're confident that the version of the library you're using does support `theme`, then you may want to double-check your code for any typos or other errors that could be causing the problem.
阅读全文