Update readme.md

This commit is contained in:
LunaChocken
2025-06-07 17:36:50 +01:00
parent 9431eef1a3
commit 1eb5b3891a
3 changed files with 8 additions and 6 deletions
+2
View File
@@ -4,6 +4,8 @@ import sys
def generate_completer(game_list):
g_list = [x['name'] for x in game_list] + [x['appid'] for x in game_list]
g_list.append("q")
g_list.append("quit")
return FuzzyCompleter(WordCompleter(g_list))
class PromptHelper: