Last corrections of 1 char variable names

This commit is contained in:
Adrien Ufferte
2025-06-10 11:17:59 +00:00
parent 91c5fac34e
commit 8af5836860
+3 -3
View File
@@ -157,6 +157,6 @@ func _on_list_title_import_path_selected(path: String, match_to_file: bool) -> v
var query: = "Select * FROM GPs ORDER BY GPs.Grapheme"
Database.db.query(query)
var result: = Database.db.query_result
for e in result:
if not [e.Grapheme, e.Phoneme, e.Type] in all_data:
Database.db.delete_rows("GPs", "ID=%s" % e.ID)
for element: Dictionary in result:
if not [element.Grapheme, element.Phoneme, element.Type] in all_data:
Database.db.delete_rows("GPs", "ID=%s" % element.ID)