-
Implement a `.pyi` stub file to implement optional type hinting (usable with mypy or Python >= 3.5) as initially proposed by @CrazyPython.
See https://github.com/tqdm/tqdm/pull/198#issuecomment-23807…
-
In the following example
```python
from dataclasses import dataclass
from typing import Optional
from jsonargparse import ArgumentParser
@dataclass
class Config:
a: int
b: floa…
-
It will be nice, when I write:
```
```
and the cursor is betwteen class="|" the autocomplete will show the class / id which I defined in my sass / scss / less / css files
Optionally: When I start …
-
Over here https://github.com/python/typing/issues/71 it was discussed to add exception information to stubs, that can be interpreted by tools like mypy. It would be great to have that as an optional f…
-
First let me apologise for the lack of specificity atm. I'm writing this at the end of my work day after I worked around the issue, so I'm writing this from memory. I do hope to come back and fill in …
-
Should behave something like Python
```
>>> from typing import Dict
>>> Dict
typing.Dict
>>> Dict[int,int]
typing.Dict[int, int]
>>>
```
How to create it?
```
const Dict = Symb…
-
### Discord username (optional)
_No response_
### Describe the solution you'd like?
Autocomplete paths in the terminal following symlinks for directories. This works in almost every terminal emulat…
-
### What happened?
Since `typing.Any` matches literally anything, for `@overload` that start with special cases these are always picked in untyped code. Instead, `@overload` should prefer the most ge…
-
### Checked other resources
- [x] I added a very descriptive title to this issue.
- [X] I searched the LangChain documentation with the integrated search.
- [X] I used the GitHub search to find a sim…
-
We have a bunch of factories mapped to various DB structures. As is the case for most projects, the DB has some required fields and some optional ones. So we created a Typescript type indicating which…