Hello everyone, I am creating a dynamic provider a...
# python
a
Hello everyone, I am creating a dynamic provider and so far so go, and While I understand why one would want to create a Input Object resource fir parameter control, but then on the Resource class super method the examples all convert the said input class to an object:
Copy code
super().__init__(AirbyteSourceProvider(), name, {**vars(props)}, opts)
Now I do get it working, but what is the point of converting to an class that is then being converted? The documentation itself does not explain this.