fix classname type

This commit is contained in:
Simon
2025-08-11 17:03:44 +07:00
parent 7c28175e9b
commit a925660078
4 changed files with 6 additions and 6 deletions

View File

@@ -153,7 +153,7 @@ class ElasticBackup:
def restore(self, filename):
"""
restore from backup zip file
call reset from ElasitIndexWrap first to start blank
call reset from ElasticIndexWrap first to start blank
"""
zip_content = self._unpack_zip_backup(filename)
self._restore_json_files(zip_content)

View File

@@ -141,7 +141,7 @@ class ElasticIndex:
_, _ = ElasticWrap(path).put(data)
class ElasitIndexWrap:
class ElasticIndexWrap:
"""interact with all index mapping and setup"""
def __init__(self):