mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-04-20 14:19:08 +00:00
remove unused rm.txt
This commit is contained in:
parent
bdab98c2c9
commit
cc4d8cfedc
2 changed files with 2 additions and 4 deletions
|
@ -1,2 +0,0 @@
|
|||
[popup_keys]
|
||||
o ò ó ö ô õ œ ø
|
4
tools/diacritics.py
Normal file → Executable file
4
tools/diacritics.py
Normal file → Executable file
|
@ -84,9 +84,9 @@ def read_diacritics() -> dict[str, list[str]]:
|
|||
with open(diacritics_file) as f:
|
||||
for line in f:
|
||||
if language == "":
|
||||
language = line.strip()
|
||||
language = line.split("#")[0].strip()
|
||||
else:
|
||||
d[language] = list(map(str.strip, line.split(",")))
|
||||
d[language] = list(map(str.strip, line.split("#")[0].split(",")))
|
||||
language = ""
|
||||
return d
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue