modal-labs / synchronicity

Synchronicity lets you interoperate with asynchronous Python APIs.
Apache License 2.0
80 stars 3 forks source link

Fix aio stub args #175

Closed freider closed 4 days ago

freider commented 4 days ago

sigtools hasn't been able to successfully "autoinfer" the actual signature of the wrapped aio variants of functions, so they have all been marked as general variadic (*args, **kwargs) in their args.

This should fix that by using the wrapped original function as the source for function signature (still transformed to using synchronicity wrapper types for all args and return values)

freider commented 4 days ago

@prbot approve