Dave Tapley

Results 104 issues of Dave Tapley

Seen on `0.9.7` but then updated and still present on `0.10.2` (#315 is _amazing_ BTW 👏🏻 👏🏻 👏🏻 ): ```py from dataclasses import dataclass from serde.json import to_json, from_json @dataclass...

bug

Ansible Galaxy allows for a `requirements.yml`: https://docs.ansible.com/ansible/2.9/galaxy/user_guide.html#install-multiple-collections-with-a-requirements-file It would be nice if Dependabot could scan this and check against https://galaxy.ansible.com/search

T: feature-request
T: new-ecosystem

All these methods are typed to return `_ResultBase`: https://github.com/falconry/falcon/blob/4910dd73ecd1b9c8cf6cae045b26ad432fa56128/falcon/testing/client.py#L1041-L1046 But actually returns `Result` here: https://github.com/falconry/falcon/blob/4910dd73ecd1b9c8cf6cae045b26ad432fa56128/falcon/testing/client.py#L638 And `Result` defines the methods which are useful in testing: https://github.com/falconry/falcon/blob/4910dd73ecd1b9c8cf6cae045b26ad432fa56128/falcon/testing/client.py#L328-L348 --- But because it's...

bug
typing

I was going to add types to https://github.com/falconry/falcon/blob/4910dd73ecd1b9c8cf6cae045b26ad432fa56128/falcon/routing/converters.py#L34 but as the docs give the type of `value` ⬇️ depend on `CONSUME_MULTIPLE_SEGMENTS`. https://github.com/falconry/falcon/blob/4910dd73ecd1b9c8cf6cae045b26ad432fa56128/falcon/routing/converters.py#L46-L53 This is a bit awkward because `CONSUME_MULTIPLE_SEGMENTS` can...

enhancement
breaking-change
maintenance

# Summary of Changes Just a few types. # Related Issues #1820

### Bug description ```python class TestClient: def simulate_get(self, path: str) -> Result: ... ``` ### Configuration _No response_ ### Command used ```shell pylint typings/falcon/testing/client.pyi ``` ### Pylint output ```python *************...

Enhancement ✨
Needs PR
pyi

[The docs](https://docs.python.org/3.11/library/concurrent.futures.html#concurrent.futures.ProcessPoolExecutor) say: > initializer is an optional callable that is called at the start of each worker process; No mention of it returning anything. And type is `Callable[..., None]`...

**_Bug report_** A new snapshot is created for the same `Date.getTime()` but different `Date` object. **Sandbox link or minimal reproduction code** https://github.com/JEFuller/mobx-state-tree/blob/7d8c20321959e51a0607b4a524f407b400a7a92b/packages/mobx-state-tree/__tests__/core/date.test.ts#L47-L57 **Describe the expected behavior** MobX-State-Tree is smart enough...

breaking change
level: intermediate

**Intended outcome:** When updating observables from an API response which contains timestamps, if a timestamp in the response is unchanged since the last time I updated, I don't want `autorun`...

❔ question

**Describe the bug** - https://github.com/facebook/react/pull/16210 Causes: ``` Warning: Container: Support for defaultProps will be removed from function components in a future major release. Use JavaScript default parameters instead. at Container...

bug