Florian Rau
Florian Rau
Hey there, I just switched from an SSD1306 to an SH1106 using HW SPI on a Teensy 3.2 with several other SPI slaves on the bus along with the display....
I've been trying to build an API documentation with the recursive variant of [`sphinx.ext.autosummary`](https://www.sphinx-doc.org/en/master/usage/extensions/autosummary.html) that needs to include a few _private_ modules of a package. Unless I missed something, it...
### Description I found a weird inconsistency when generating JSON schema: ### Variant 1 ``` python import msgspec from typing import Annotated import json key_type = Annotated[str, msgspec.Meta(pattern=r'^A$')] value_type =...