So I'm pretty new to Python and there is this library I want to work with. However there is an argument in the constructor of the class which I can't find anything about.
init method looks like this:
def __init__(self, ain1, ain2, bin1, bin2, *, microsteps=16):
What does the * do? As far as I know the self is just the object itself and the others are just arguments. But what's the * ?
Link to the full class: check line 73
Thanks in advance