src/chug/wds/decode.py [69:74]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if select_random:
                if select_random == 1:
                    page_indices = [random.choice(page_indices)]
                else:
                    page_indices = random.sample(page_indices, select_random)
                    page_indices.sort()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/chug/wds/decode.py [146:151]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if select_random:
        if select_random == 1:
            page_indices = [random.choice(page_indices)]
        else:
            page_indices = random.sample(page_indices, select_random)
            page_indices.sort()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



