Blinkstick on WSL I/O Issues

Hello community I downloaded the BlinkStick API on my WSL environment to see how it would operate on Linux. I managed to follow the Linux download and I began to write a Python script to manipulate the LED lights. my program ran with no errors but it did not light any of the LED lights. I am trying to see what happened wrong. Is the problem an I/O driver issue on WSL or did I forget to install additional software? I would appreciate it a lot.

Thank you,

For context, I followed the steps mentioned here: https://github.com/arvydas/blinkstick-python I am also running the following Python script:

from blinkstick import blinkstick

for bstick in blinkstick.find_all():
    bstick.set_color(name='deepskyblue')
    bstick.turn_off()

I was able to solve this thanks!