aeisenbarth

Results 36 comments of aeisenbarth

Thanks, this looks good! In my GUI, I wasn't annotating a function signature but I subclassed Container and added widgets using the direct widget API. This GUI class is then...

I would be very interested if this was working, especially since paths don't have an inherent null value (`Path("")` would resolve to the working directory, whereas for pure strings you...

Currently I am building my user interface using the direct widget API and noticed I should avoid repetition by keeping widget constraints (type, min/max) in a central place, my data...

I recently fell into this problem and created a test case, not knowing that this issue exists already. - This happens for most colormaps with **more than 2** control points...

By storing column names as the actual file names of arrays (`col_0` etc.), we limit column names to restrictions of the underlaying file system. Some table formats may support column...

Hello, yes, renaming works around the issue (with the downside of not being in line with scanpy's default; we aim to generate standard scanpy AnnData files). To satisfy scanpy and...

I get the same, not specifically for 4-level headers, but also 2-level headers. Note: A warning != error. What is happening here does not break any functionality. I suspect this...

Sorry, the example was not completely the code I was using and that I expected to work. I did have a docstring that was parsed by Sphinx for the original...

A workaround is to copy the [original template](https://github.com/sphinx-doc/sphinx/blob/master/sphinx/ext/autosummary/templates/autosummary/module.rst) to `_templates/autosummary/module.rst` in your root docs directory and patch a single line in the functions section: ```diff --- module.rst +++ module.rst @@...