We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Source Issue: airtai/faststream#1558
The following native FastDepends sometimes failures and reproduces the problem above
from fast_depends import inject from fast_depends.library import CustomField @inject def func( b: int = CustomField(), a: int = CustomField(), ): assert b == 2 assert a == 1 func(2, 1)
The text was updated successfully, but these errors were encountered:
fix (#112): correct CustomFields mapping to positional args
bc98bdc
fix (#112): correct CustomFields mapping to positional args (#113)
eebb26d
chore: #112 pr
0c1ec53
No branches or pull requests
Source Issue: airtai/faststream#1558
The following native FastDepends sometimes failures and reproduces the problem above
The text was updated successfully, but these errors were encountered: