Skip to content

Commit d426d88

Browse files
committed
fixing class name
1 parent 81d0d31 commit d426d88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mindsdb_sql_parser/ast/mindsdb/knowledge_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def __init__(self, name, *args, **kwargs):
120120

121121
def to_tree(self, *args, level=0, **kwargs):
122122
ind = indent(level)
123-
out_str = f"{ind}CreateIndexBase(name={self.name.to_string()})"
123+
out_str = f"{ind}CreateKnowledgeBaseIndex(name={self.name.to_string()})"
124124
return out_str
125125

126126
def get_string(self, *args, **kwargs):

0 commit comments

Comments
 (0)