swap user ID and username in talent lists

This commit is contained in:
muskit
2023-05-16 19:18:12 -07:00
parent 114de79efa
commit 01de42a73d
5 changed files with 88 additions and 88 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ def __create_dict(file, _dict, company):
for line in f:
words = line.split()
if len(words) == 2 and line[0] != '#':
name, id = line.split()
id, name = line.split()
# name = f'{util.get_username_online(id, default=name)}' # attempt to get updated name
talents[int(id)] = name
_dict[int(id)] = name