Update main.py for extra sheet column

This commit is contained in:
The Gears of Progress 2026-01-15 13:42:15 -05:00 committed by GitHub
parent f50d42f61f
commit b50b3e8cd6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -467,7 +467,7 @@ for row in currSheet.iterrows():
currRow = row[1]
#print(currRow)
offset = lang.value
if (pd.isna(currRow.iloc[7 + lang.value])):
if (pd.isna(currRow.iloc[8 + lang.value])):
offset = Languages.English.value
mainDict[lang.name][currRow.iloc[0]][currRow.iloc[1]] = {"bytes": currRow.iloc[7 + offset],
"numLines": currRow.iloc[2],