diff --git a/python-api-src/library.cpp b/python-api-src/library.cpp
index dbe34443ee9bd2153bd6cb1cb395134ae9425ffb..f32f6b146530845ea05b6c280a80bfd60ce65a58 100644
--- a/python-api-src/library.cpp
+++ b/python-api-src/library.cpp
@@ -74,7 +74,7 @@ PYBIND11_MODULE(library, m)
         .def(py::init())
         .def("on_game_start", &IDABot::OnGameStart)
         .def("on_step", &IDABot::OnStep)
-    .def("send_chat", &IDABot::SendChat, "Send a message to the game chat", "message"_a)
+        .def("send_chat", &IDABot::SendChat, "Send a message to the game chat", "message"_a)
         .def("get_all_units", &IDABot::GetAllUnits, "Returns a list of all units")
         .def("get_my_units", &IDABot::GetMyUnits, "Returns a list of all units beloning to the player")
         .def("get_player_race", &IDABot::GetPlayerRace)