From 6d971ea0cfac1298bea253d0efbb47e824be13bf Mon Sep 17 00:00:00 2001 From: Sean Hammond Date: Wed, 13 Feb 2013 17:53:32 +0100 Subject: [PATCH] [#2750] Remove db_to_form_schema_options() from ExampleIDatasetForm Is not supposed to be overridden, not part of the IDatasetForm interface. --- ckanext/example_idatasetform/plugin.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/ckanext/example_idatasetform/plugin.py b/ckanext/example_idatasetform/plugin.py index f97d436f007..961ea8e8dff 100644 --- a/ckanext/example_idatasetform/plugin.py +++ b/ckanext/example_idatasetform/plugin.py @@ -67,9 +67,6 @@ def package_types(self): # registers itself as the default (above). return [] - def db_to_form_schema_options(self, options): - return self.db_to_form_schema() - def form_to_db_schema(self): schema = logic.schema.form_to_db_package_schema()