Andrew Brampton
Andrew Brampton
### Platforms dart ### Description In addition to returning a size, it would be useful to return the image type (PNG, JPG, etc). The implementation of `ImageSizeGetter.getSize` seems to cycle...
#### Environment details - OS type and version: macOS 14.3.1 (23D60) - Python version: Python 3.12.2 - pip version: pip 24.0 - `google-api-python-client` version: Version: 2.122.0 #### Steps to reproduce...
Version 3.2.1 has a CVSS 10.0 vulnerability. That's the worst kind of vulnerability that exists. By merely existing on the classpath, this library causes the Java serialization parser for the...
and replaced it with the `dart run` equivalent. Also fixed a couple of minor typos.
```python import pint ureg = pint.UnitRegistry() print(ureg('−66.11*10**-62')) ``` on Python 3.11.9 ``` 6.611e-61 ``` on Python 3.12.4 ``` Traceback (most recent call last): File "src/temp.py", line 7, in print(ureg('−66.11*10**-62')) ^^^^^^^^^^^^^^^^^^^^^^...
For ~two years 'del' no longer exports a default method, and instead exports `deleteAsync()` and `deleteSync()`, the former replacing `del()` See https://github.com/sindresorhus/del/commit/106d7d8ff813059c437d7c428539b7719292d1d6
I would like to encode a `dict[str, SomeBaseModel]`, but currently it fails with: ```python class MyCollection(BaseCollectionModel[MyModel]): pass ``` ``` pydantic_core._pydantic_core.ValidationError: 1 validation error for MyCollection Input should be a valid...
I would like to run this software behind a HTTP proxy that would terminate the mTLS connections. Because the proxy terminates the connections, the fleet-telemetry server would not see the...
I quite often have objects that include a double, and use a deep matcher (via `equals()`), e.g ```dart import 'dart:math'; List a = resultOfSomeFunction(); expect(a, equals([Point(1.2, 3.4), ...]); ``` In...
### Summary Add the `filter_map` function to the `GraphMap` type ### Motivation `filter_map` is a simple way to filter nodes and edges from Graph and StableGraph, but seems missing from...