Generated python docs incorrectly adds underscore to prop
Describe the bug
The generated Python docs incorrectly shows memory_limit_mi_b as the property when there should be no underscore in mi_b. Seen here
This is likely because Python is detecting the capital B as a new "word"
Expected Behavior
docs show memory_limit_mib
Current Behavior
docs show memory_limit_mi_b
Reproduction Steps
https://docs.aws.amazon.com/cdk/api/v2/python/aws_cdk.aws_ecs_patterns/ApplicationLoadBalancedFargateService.html https://docs.aws.amazon.com/cdk/api/v2/python/aws_cdk.aws_ecs_patterns/ApplicationLoadBalancedFargateServiceProps.html
Possible Solution
No response
Additional Information/Context
No response
SDK version used
.
Environment details (OS name and version, etc.)
.
Still an issue. To make it work have to change memory_limit_mi_b to memory_limit_mib in ecs_patterns.ApplicationLoadBalancedFargateService.
This issue is leading to incorrect code to be propagated at least here, where else may this issue be propagating incorrect code?