Skip to content

Commit

Permalink
Fix for new RaithData object creation
Browse files Browse the repository at this point in the history
Signed-off-by: Lucas Heitzmann Gabrielli <heitzmann@gmail.com>
  • Loading branch information
heitzmann committed Aug 31, 2024
1 parent bf52e42 commit efe2881
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions python/flexpath_object.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2297,6 +2297,7 @@ int flexpath_object_set_repetition(FlexPathObject* self, PyObject* arg, void*) {
static PyObject* flexpath_object_get_raith_data(FlexPathObject* self, void*) {
RaithDataObject* obj = PyObject_New(RaithDataObject, &raithdata_object_type);
obj = (RaithDataObject*)PyObject_Init((PyObject*)obj, &raithdata_object_type);
obj->raith_data.base_cell_name = NULL;
obj->raith_data.copy_from(self->flexpath->raith_data);
return (PyObject*)obj;
}
Expand Down

0 comments on commit efe2881

Please sign in to comment.