This fixes a warning on MSVC:
F:\llvm-project\lldb\source\Commands\CommandObjectThread.cpp(529): warning C4305: 'argument': truncation from 'char' to 'bool'
Previously, 'C' was passed into the wrong parameter, as is_class was introduced in D68671:
OptionGroupPythonClassWithDict(const char *class_use, bool is_class = true, int class_option = 'C',
We could also leave out both true and C since both are already defaulted to these values.