botbuilder-python
botbuilder-python copied to clipboard
Fix optional typing issue
Description
Typing for optional str, int, bool with default value None is incorrect.
Specific Changes
- Change
str = NonetoUnion[str, None] = None - Change
int = NonetoUnion[int, None] = None - Change
bool = NonetoUnion[bool, None] = None
@microsoft-github-policy-service agree