Vlastimil Zíma
Vlastimil Zíma
`bumpversion` tends to mess up the config. It would be better to split it to `.bumpversionrc`, so it doesn't messes up the `setup.cfg`.
Some of the `Setting` arguments are deprecated since transition to validators. We should already remove them.
It would be easier to manage changes if positional arguments for `Setting.__init__` weren't allowed. Most of the `ListSetting`, `SetSetting` and `TupleSetting` arguments are already disabled.
I don't really see the point in the `transform_default` argument. It seems quite straightforward to provide the default value the same way it should be set up in settings. I'm...
Since `Settings` are basically smart `dataclass`, we might use annotations in settings definition to allow even simpler setup. The goal would be ``` class MySettings(AppSettings): my_foo: str = Setting(default='my_default') my_bar:...
As agreed in #53, we should merge the settings for iterables (list, tuple, ...) into one setting, since it doesn't really matter which type is used to define them. Tuple...
Several `Setting` subclasses override their `__init__` just to provide a different default value. We should add an attribute which would replace the need to override the `__init__` just in this...
- Version by `html2text.__version__`: (2016, 9, 19) - Test script ```python import html2text conv = html2text.HTML2Text() conv.pad_tables = True print conv.handle('12jujuhuhu') # 1 | 2 # -----|--------------------------------------------------------- # juju |...
#31 introduced a string representation property for report which should be used where the nice report is required. #### Ideas #### * Drop `CSPReport.json_as_html` and keep only `CSPReportAdmin.json_as_html`. * Refactor...
### Suggestions ### * [ ] Show individual fields * [ ] Prevent users from creating/updating reports