Fix typo in Backtranslation_of_SQL_queries.py (#709)

This commit is contained in:
Ikko Eltociear Ashimine 2023-09-28 09:50:53 +09:00 committed by GitHub
parent c2959fd60b
commit 6efa2eca0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,11 +41,11 @@ def get_candidates(
def rindex(lst: List, value: str) -> int:
"""
Return the index of the last occurence of a value in a list.
Return the index of the last occurrence of a value in a list.
:param lst: The list to search in.
:param value: The value to search for.
:return: The index of the last occurence of the value.
:return: The index of the last occurrence of the value.
"""
try:
return len(lst) - lst[::-1].index(value) - 1