From 570eef5aa2c702f921693e7844cbe337db963936 Mon Sep 17 00:00:00 2001 From: P PUNITH KRISHNA <32421081+punith300i@users.noreply.github.com> Date: Fri, 2 Jun 2023 11:45:19 -0700 Subject: [PATCH] Updated export interface comments --- sand/extension_interface/export.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sand/extension_interface/export.py b/sand/extension_interface/export.py index 5b7e864..ab99029 100644 --- a/sand/extension_interface/export.py +++ b/sand/extension_interface/export.py @@ -15,11 +15,11 @@ class IExport(ABC): @abstractmethod def export_data_model(self, table: Table, sm: O.SemanticModel) -> DRepr: - """Search Class using name""" + """Class to export data model""" pass @abstractmethod def export_data(self, table: Table, rows: List[TableRow], sm: O.SemanticModel, output_format: OutputFormat): - """Search Class using name""" + """Class to export data""" pass