morgan
morgan
https://github.com/Monstrofil/replays_unpack/blob/0d99291d17fcf612dfebc05a8caf49cd5c2665c3/replay_unpack/clients/wows/player.py#L28-L32 this join statement here to support longer version lengths (such as 0.9.10 as opposed to 0.9.9) is splitting 0.9.10 into 0_9_1_0 instead of 0_9_10. Not sure if this is...
If an option has a default value of `""`, the `show_default` option does not display anything. Reproducible example: ``` import click @click.group() def test_cli() -> None: pass @test_cli.command(help="Test CLI") @click.option("--test_value",...
Use `None` instead of `""` to indicate that `default_string` is unset to allow for empty string defaults. https://github.com/pallets/click/issues/2500 - fixes #2500 New behavior: Checklist: - [x] Add tests that demonstrate...