konstantin

Results 34 issues of konstantin

The EventHub documentation says: > Every time you generate a new SAS key in portal, you need to change in this config table. But when I'm trying to update the...

This works: ```python from marshmallow import Schema, fields from marshmallow_jsonschema import JSONSchema class RecursiveSchema(Schema): # when nesting recursively you can only refer the recursive schema by its name nested_mwe_recursive =...

Ignore: > aioresponses\core.py:113: error: Item "URL" of "Union[URL, Pattern[Any]]" has no attribute "match" [union-attr]

Fixes: > aioresponses\core.py:367: error: Item "Exception" of "Union[ClientResponse, Exception]" has no attribute "status" [union-attr] aioresponses\core.py:369: error: Argument 1 to "__get__" of "reify" has incompatible type "Union[ClientResponse, Exception]"; expected "_TSelf[CIMu ltiDictProxy[str]]"...

Fixes mypy warning > aioresponses\compat.py:31: error: All conditional function variants must have identical signatures [misc]

This is about the **interpolation** feature. ### Expected Behavior When typing in the phenomena box I'd expect the website to tell me, which phenomena are available instead of being forced...

bug

> marshmallow_jsonschema.exceptions.UnsupportedValueError: unsupported field type See changelog: https://github.com/marshmallow-code/marshmallow/blob/dev/CHANGELOG.rst#3180-2022-09-15

Hi, I'm using [the example code](https://github.com/jesperfj/force-rest-api#update-sobject) to update an object. The object has an id and some properties, just like this: ``` @JsonIgnoreProperties(ignoreUnknown=true) public static class MyObject { @JsonProperty(value="Id") private...

## Fixes Or Enhances I noticed that the credit card check has been added recently in #924. I added a more general `luhn_checksum` validation that validates not only credit card...