-
-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
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
Fix __aexit__ signatures #323
Conversation
Hello! Thank you for your contribution. In order to keep static stubs consistent and independent from https://github.com/youtype/types-aiobotocore That would be great if you could create PRs with your changes in these two repos. This way the changes will appear in the next Please keep this PR open, I will merge it once two repos above are updated. Otherwise, your changes will be wiped out on the next static stubs pull. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please replicate the changes you made in
https://github.com/youtype/types-aiobotocore
https://github.com/youtype/types-aioboto3
exc_type: Optional[Type[Exception]], | ||
exc_value: Optional[Exception], | ||
exc_type: Optional[Type[BaseException]], | ||
exc_value: Optional[BaseException], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
exc_type: Optional[Type[Exception]], | ||
exc_value: Optional[Exception], | ||
exc_type: Optional[Type[BaseException]], | ||
exc_value: Optional[BaseException], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
exc_type: Optional[Type[Exception]], | ||
exc_val: Optional[Exception], | ||
exc_type: Optional[Type[BaseException]], | ||
exc_val: Optional[BaseException], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
exc_type: Optional[Type[Exception]], | ||
exc: Optional[Exception], | ||
exc_type: Optional[Type[BaseException]], | ||
exc: Optional[BaseException], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
exc_type: Optional[Type[Exception]], | ||
exc_val: Optional[Exception], | ||
exc_type: Optional[Type[BaseException]], | ||
exc_val: Optional[BaseException], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
exc_type: Optional[Type[Exception]], | ||
exc_val: Optional[Exception], | ||
exc_type: Optional[Type[BaseException]], | ||
exc_val: Optional[BaseException], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
exc_type: Optional[Type[Exception]], | ||
exc_val: Optional[Exception], | ||
exc_type: Optional[Type[BaseException]], | ||
exc_val: Optional[BaseException], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
exc_type: Optional[Type[Exception]], | ||
exc_val: Optional[Exception], | ||
exc_type: Optional[Type[BaseException]], | ||
exc_val: Optional[BaseException], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
exc_type: Optional[Type[Exception]], | ||
exc: Optional[Exception], | ||
exc_type: Optional[Type[BaseException]], | ||
exc: Optional[BaseException], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
exc_type: Optional[Type[Exception]], | ||
exc_val: Optional[Exception], | ||
exc_type: Optional[Type[BaseException]], | ||
exc_val: Optional[BaseException], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Notes
Please describe your changes here.
Type of change
Checklist
All of these are optional:
./scripts/before_commit.sh
to follow the style guidelines of this projectThank you!