Vlastimil Zíma

Results 67 comments of Vlastimil Zíma

I don't like the class attribute to be change to instance attribute when passed as argument to `__init__`. I'm more in favor of having those two separated. Other arguments might...

Additional details: It's actually on the position of the cursor at time vim is opened, which is usually but not always the first char on first line. It looks line...

I have troubles with the same error: ``` $ _TOX_SHOW_THREAD=1 timeout 900 tox --exit-and-dump-after 600 -vvv ROOT: 104 D setup logging to NOTSET on pid 163 [tox/report.py:221] Timeout (0:10:00)! Thread...

Found the problem: It was caused by accidental creation of large number of groups in nextcloud (automatic sync from LDAP). That information is passed as part of the `sso` parameter...

I also wanted to create a view that would return multiple content types based on `Accept` header. First I created a set of renderers: ```python class NinjaTextRenderer(NinjaBaseRenderer): media_type = 'text/plain'...

Working on this on EuroPython 24 sprints.

I've ditched `TomlLoader` and updated `MemoryLoader` instead. They were mostly the same.

I changed testenv in TOML to `tool.tox.env` as suggested in https://github.com/tox-dev/tox/issues/999#issuecomment-2231261265 Currently supported pyproject.toml looks like ```toml [tool.tox] env_list = ['py311', 'py312', 'type'] # The default testenv is `testenv`. [tool.tox.env.testenv]...

Ad options: `deps` just needs a tweak to work, but there is an underlying issue regarding factors. I'm not yet sure how to handle factors in TOML. For `deps`, I...

I'm back from holiday, so I should be able to find some time to work on this again.