From 742ee9a4ed63c88158a12be92b7218d4eed31207 Mon Sep 17 00:00:00 2001 From: Andrew Morrow Date: Fri, 21 Oct 2022 12:24:10 -0400 Subject: fix link about unique --- SCons/Util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SCons/Util.py b/SCons/Util.py index 4b06ca4..33e02f4 100644 --- a/SCons/Util.py +++ b/SCons/Util.py @@ -1365,7 +1365,7 @@ def unique(seq): # Best way (assuming Python 3.7, but effectively 3.6) to remove # duplicates from a list in while preserving order, according to -# https://discord.com/channels/@me/627187920079421471/1032001231952027648 +# https://stackoverflow.com/questions/480214/how-do-i-remove-duplicates-from-a-list-while-preserving-order/17016257#17016257 def uniquer_hashables(seq): return list(dict.fromkeys(seq)) -- cgit v0.12