Skip to content

Commit

Permalink
WIP - A1
Browse files Browse the repository at this point in the history
  • Loading branch information
ValentinGuillaume committed Dec 12, 2024
1 parent 18f4dc6 commit 0d3119f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/python_binding/src/python_binding/interpretor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ namespace VTX::PythonBinding
public:
void initializePythonModule()
{
return;
_vtxModule = pybind11::module_::import( "vtx_python_bin" );

LogRedirection logger = LogRedirection();
Expand All @@ -36,6 +37,7 @@ namespace VTX::PythonBinding

void applyBinders()
{
return;
Wrapper::Module moduleWrapper = Wrapper::Module( _vtxModule, "vtx_python_bin" );
_pyTXModule = std::make_unique<PyTXModule>( moduleWrapper );

Expand All @@ -47,6 +49,7 @@ namespace VTX::PythonBinding

void importCommands()
{
return;
// Import all commands
pybind11::exec( "from vtx_python_bin.Command import *" );

Expand Down

0 comments on commit 0d3119f

Please sign in to comment.