Johannes Bader
Johannes Bader
The latest release of Anki, 2.1.44, requires both ``cardsToo`` and ``childrenToo`` to be set to true when calling ``rem`` on a ``DeckManager``: ``` def rem(self, did: int, cardsToo: bool =...
During a debug session in IDA, and even after leaving debug mode, the function upload is broken. Trying to upload any function, be it a untouched function or a function...
Even if headers are defined in an ``OrderedDict``, their order might change if they coincide with the ``default_headers`` set in ``utils.py``, namely ``User-Agent``, ``Accept-Encoding``, ``Accept``, and ``Connection``. ## Expected Result...
Given the following `requirements.in` file without any pinned version: ```txt playwright titlecase ``` And this `playwright.txt` with both packages outdated: ``` # # This file is autogenerated by pip-compile with...
I'm using the default configuration ``` config := huma.DefaultConfig("Example API", "1.0.0") ``` and changed the server url as follows ```go config.Servers = []*huma.Server{ {URL: "https://api.example.com", Description: "Root URL of the...
According to [the documentation](https://huma.rocks/features/request-validation/#strict-vs-loose-field-validation) Huma is strict about unexpected fields: > By default, Huma is strict about which fields are allowed in an object, making use of the additionalProperties: false...