From c9754e05637fe8ae6727d4e5be1958891d33a3c4 Mon Sep 17 00:00:00 2001 From: olivier <> Date: Tue, 3 Apr 2007 21:37:13 +0000 Subject: [PATCH] fix syntax errors --- export/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/export/api.py b/export/api.py index 6156581f..6cce485a 100644 --- a/export/api.py +++ b/export/api.py @@ -1,5 +1,5 @@ -class IExporter(): +class IExporter: """Export driver interface""" # Remark: the method prototypes do not include any self or cls argument @@ -32,7 +32,7 @@ class IExporter(): temporary directory should be used if that's not the case. """ - def process(item_id, source, metadata) + def process(item_id, source, metadata): """Perform the exporting process and return the absolute path to the resulting file. -- 2.39.5