Fix use of reserved keyword in python
This commit is contained in:
parent
c0b3917df5
commit
1c7306f982
|
@ -294,7 +294,7 @@ void export_lightmanager() {
|
||||||
using namespace boost::python;
|
using namespace boost::python;
|
||||||
|
|
||||||
enum_<cr::LightState::LightGroup>("LightGroup")
|
enum_<cr::LightState::LightGroup>("LightGroup")
|
||||||
.value("None", cr::LightState::LightGroup::None)
|
.value("NONE", cr::LightState::LightGroup::None)
|
||||||
.value("Vehicle", cr::LightState::LightGroup::Vehicle)
|
.value("Vehicle", cr::LightState::LightGroup::Vehicle)
|
||||||
.value("Street", cr::LightState::LightGroup::Street)
|
.value("Street", cr::LightState::LightGroup::Street)
|
||||||
.value("Building", cr::LightState::LightGroup::Building)
|
.value("Building", cr::LightState::LightGroup::Building)
|
||||||
|
|
Loading…
Reference in New Issue