From c89564bc115f5cc464d57c03224b9d6fa5015b88 Mon Sep 17 00:00:00 2001
From: Gabriel Studer <gabriel.studer@unibas.ch>
Date: Tue, 15 Nov 2016 11:58:10 +0100
Subject: [PATCH] Python export for ProfileHandleList is not required

---
 modules/seq/base/doc/seq.rst                    | 3 ---
 modules/seq/base/pymod/export_profile_handle.cc | 4 ----
 2 files changed, 7 deletions(-)

diff --git a/modules/seq/base/doc/seq.rst b/modules/seq/base/doc/seq.rst
index 533550913..3d112dfa9 100644
--- a/modules/seq/base/doc/seq.rst
+++ b/modules/seq/base/doc/seq.rst
@@ -553,9 +553,6 @@ residue. It mainly contains:
 
     :type: :class:`float`
 
-.. class:: ProfileHandleList
-
-  Represents a list of :class:`ProfileHandle` objects
 
 .. class:: ProfileDB
 
diff --git a/modules/seq/base/pymod/export_profile_handle.cc b/modules/seq/base/pymod/export_profile_handle.cc
index 31c09178d..111442f6c 100644
--- a/modules/seq/base/pymod/export_profile_handle.cc
+++ b/modules/seq/base/pymod/export_profile_handle.cc
@@ -58,10 +58,6 @@ void export_profile_handle()
     .def(vector_indexing_suite<ProfileColumnList>())
   ;
 
-  class_<ProfileHandleList>("ProfileHandleList", init<>())
-    .def(vector_indexing_suite<ProfileHandleList>())
-  ;
-
   class_<ProfileHandle, ProfileHandlePtr>("ProfileHandle", init<>())
     .def("__len__",&ProfileHandle::size)
     .def("AddColumn", &ProfileHandle::push_back)
-- 
GitLab