Skip to content

Commit

Permalink
Update internal extension name
Browse files Browse the repository at this point in the history
  • Loading branch information
MAminSFV committed Sep 12, 2024
1 parent 0887d6e commit 01dab53
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/drake_extension/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from __future__ import annotations
from .drake_extension_ext import SimpleAdder
from .drake_extension_ext import __doc__, SimpleAdder

__all__ = ["SimpleAdder"]
__all__ = ["__doc__", "SimpleAdder"]
2 changes: 1 addition & 1 deletion src/drake_extension_ext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class SimpleAdder : public LeafSystem<T> {
};


PYBIND11_MODULE(drake_extension, m) {
PYBIND11_MODULE(drake_extension_ext , m) {
m.doc() = "Example module interfacing with pydrake and Drake C++";

py::module::import("pydrake.systems.framework");
Expand Down

0 comments on commit 01dab53

Please sign in to comment.