Skip to content

Commit

Permalink
Uncomment be_roster attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
Zardshard committed Oct 14, 2023
1 parent c0d34ca commit b58b139
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bindings/app/Roster.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ m.attr("B_SOME_APP_LAUNCHED") = py::int_('BRAS');
m.attr("B_SOME_APP_QUIT") = py::int_('BRAQ');
m.attr("B_SOME_APP_ACTIVATED") = py::int_('BRAW');

//m.attr("be_roster") = be_roster;

py::class_<app_info>(m, "app_info")
.def(py::init(), "")
.def_readwrite("thread", &app_info::thread)
Expand Down Expand Up @@ -68,5 +66,7 @@ py::class_<BRoster>(m, "BRoster")
//.def_readonly("Private", &BRoster::Private)
;

m.attr("be_roster") = be_roster;


}

0 comments on commit b58b139

Please sign in to comment.