-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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 typing for explore
argument
#30734
Conversation
Signed-off-by: Ram Rachum <ram@rachum.com>
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs. Thank you for your contributions.
|
Too bad no one found time to review this.
…On Sat, Dec 31, 2022 at 9:36 PM stale[bot] ***@***.***> wrote:
This pull request has been automatically marked as stale because it has
not had recent activity. It will be closed in 14 days if no further
activity occurs. Thank you for your contributions.
- If you'd like to keep this open, just leave any comment, and the
stale label will be removed.
—
Reply to this email directly, view it on GitHub
<#30734 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAAN3SX3MLRBOLN4NELRSTLWQCDKXANCNFSM6AAAAAASOOR7FY>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs. Thank you for your contributions.
|
I hope that this PR will be reviewed. |
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.
LGTM. Thanks for the fix @cool-RR !
Signed-off-by: Ram Rachum <ram@rachum.com> Signed-off-by: Edward Oakes <ed.nmi.oakes@gmail.com>
Signed-off-by: Ram Rachum ram@rachum.com
Since the
explore
argument can accept the valueNone
, it can't be justbool
. I fixed it toOptional[bool]
.