Don't shuffle

main
Bob Mottram 2020-06-23 15:36:38 +01:00
parent 1a0fcf95e7
commit afd412118d
1 changed files with 0 additions and 4 deletions

View File

@ -1610,10 +1610,6 @@ def groupFollowersByDomain(baseDir: str, nickname: str, domain: str) -> {}:
grouped[followerDomain] = [fHandle]
else:
grouped[followerDomain].append(fHandle)
if grouped:
# put the dictionary into random order
keys = grouped.keys()
random.shuffle(keys)
return grouped