update Readme

This commit is contained in:
Volobuev Andrey
2025-10-07 17:39:42 +03:00
parent 373ed59dce
commit 37c73a86b6
2 changed files with 33 additions and 11 deletions

View File

@@ -97,7 +97,7 @@ class DatasetMapper:
self.logger.info("[load_excel_mappings][Enter] Loading mappings from %s.", file_path)
try:
df = pd.read_excel(file_path)
mappings = df.set_index('column_name')['column_comment'].to_dict()
mappings = df.set_index('column_name')['verbose_name'].to_dict()
self.logger.info("[load_excel_mappings][Success] Loaded %d mappings.", len(mappings))
return mappings
except Exception as e: