botbuilder-python icon indicating copy to clipboard operation
botbuilder-python copied to clipboard

Fix optional typing issue

Open VictorErmakov opened this issue 11 months ago • 1 comments

Description

Typing for optional str, int, bool with default value None is incorrect.

Specific Changes

  • Change str = None to Union[str, None] = None
  • Change int = None to Union[int, None] = None
  • Change bool = None to Union[bool, None] = None

VictorErmakov avatar Mar 03 '25 13:03 VictorErmakov

@microsoft-github-policy-service agree

VictorErmakov avatar Mar 03 '25 13:03 VictorErmakov