RandomWords icon indicating copy to clipboard operation
RandomWords copied to clipboard

Exception thrown for `get_sentences()` in Python 3.11

Open paulkorir opened this issue 2 years ago • 0 comments

The following exception is thrown in Python:

TypeError: Population must be a sequence.  For dicts or sets, use sorted(d).

because random.sample(population,...) now requires that population is a sequence; sets are not cast to sequences. See https://docs.python.org/3/library/random.html#random.sample.

paulkorir avatar Feb 10 '23 23:02 paulkorir