Skip to content

Commit

Permalink
fixup style
Browse files Browse the repository at this point in the history
  • Loading branch information
rickyes committed May 15, 2020
1 parent 8d088da commit 70fe557
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/boa/src/core/object.cc
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ Napi::Value PythonObject::SetItem(const CallbackInfo &info) {
Napi::Value PythonObject::Dir(const CallbackInfo &info) {
PyObject *attrs = PyObject_Dir(_self.ptr());
return PythonObject::NewInstance(
info.Env(), pybind::reinterpret_borrow<pybind::object>(attrs));
info.Env(), pybind::reinterpret_borrow<pybind::object>(attrs));
}

inline bool PythonObject::IsKwargs(Napi::Value value) {
Expand Down

0 comments on commit 70fe557

Please sign in to comment.