diff --git a/python-api-src/lib_point.cpp b/python-api-src/lib_point.cpp
index 825500d223f9ceb32cf9320b94c670f35041abd8..b6a99086eb06c45b1274e0cb054512aa61f7d85d 100644
--- a/python-api-src/lib_point.cpp
+++ b/python-api-src/lib_point.cpp
@@ -41,7 +41,7 @@ void define_point(py::module & m)
         .def(py::self != py::self)
         .def("__repr__",
             [](const sc2::Point2DI & p) {
-                return "<Point2D: (" + std::to_string(p.x) + ", " + std::to_string(p.y) + ")>";
+                return "<Point2DI: (" + std::to_string(p.x) + ", " + std::to_string(p.y) + ")>";
             })
         .def("__str__", 
             [](const sc2::Point2DI & p) {