Jan Eil
Jan Eil
Define interface of `M3U8` in `__init__` method. Initialize with an `INITIAL` object, as `None` might be a valid value. Values are dynamically overwritten in `_initialize_attributes()`.
False positive: F401 'foo' imported but unused a.py: ```python from b import foo def test(): global foo print(foo) foo = 'bar' print(foo) test() ``` b.py: ```python foo = 'foo' ```...
In the pre-commit hook, the plugin prettier-plugin-toml is installed, but not used. Plugins must be loaded either via CLI command `--plugin` or in the configuration file. As there is a...
In Python I got used to the [Magic Trailing Comma](https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#the-magic-trailing-comma) which prevents collapsing a list into one line, if there is a trailing comma in the last element. > There...
In the [Prettier Docs](https://prettier.io/docs/en/ignore) it is a general rule to put `# prettier-ignore` before the token to be ignored. This does not work with this plugin. ## Input ```toml [example]...
Fix #159 for 7.x.x similar to #160