Skip to content
Snippets Groups Projects
Commit 6e71c7ee authored by Belfadel Mohamed's avatar Belfadel Mohamed
Browse files

DicoTrie __repr__

parent 3973e251
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ class DicoTrie:
def __init__(self, liste_assos: list[Association]):
"""
"""
self.liste_assos = liste_assos
self.liste_assos = sorted(liste_assos, key = lambda a: a.cle)
def __repr__(self) -> str:
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment