-
```
It should be possible to play chess with PyChess using no mouse.
Keys like TAB, space, enter and arrowkeys should be fine.
Optionally typing moves, while board has focus, could also work.
```
Or…
-
`@particle_input` ques off of arguments annotated with `Particle` to properly condition that argument into a `Particle()` object. However, that argument is allowed to be a string (e.g. `"He+"`) or a …
-
### Dagster version
1.5.7
### What's the issue?
For a `ConfigurableResource`, It's impossible to set a value to an `Optional` field in some cases.
This works:
```python
from typing im…
-
I have a pretty specific library that is file extension oriented. In `sqlalchemy-file` it is not possible to specify a custom file name. However, the `sqlalchemy_file.file.File.store_content` function…
-
Using type hints that is only pulled in via `if TYPE_CHECKING` constructs will fail serialization, even if the field is excluded.
```python
from typing import TYPE_CHECKING, Optional
import deser…
-
Most of the CDK type signatures use `List` instead of `Sequence`. `List` is invariant http://mypy.readthedocs.io/en/latest/common_issues.html#variance
So this means we can't do something simple lik…
-
Hi,
As an extension of my issue #61, I also think it would be nice if the Numpy docstring factory [numpy.ts](https://github.com/NilsJPWerner/autoDocstring/blob/master/src/docstring_factories/numpy…
-
## Problem
Currently, defining multiple event handlers using a framework that doesn't support a callback like `on_startup()` is annoying as you have to check if the client is connected or not b…
-
See the following example:
```
from typing import Any, Optional, TypeVar
T = TypeVar("T")
def assert_not_none(value: Optional[T]) -> T:
assert value is not None
return value
…
-
### Problem description
Make the *id's* used within the ST API new proper types (e.g. `NewType`) instead of using the very
unspecific `int`. E.g. instead of `View.id() -> int` make it `View.id() …
kaste updated
4 months ago