-
**Bug Report**
There is occasional use for a method that exhibits different behaviours when accessed via an instance vs the class. SQLAlchemy has one such example named [hybrid_method (code)](https…
jace updated
11 months ago
-
When I try to execute "from unsloth import FastLanguageModel" the following error appear.
---------------------------------------------------------------------------
TokenError …
-
```py
from typing import Literal
foo: Literal["foo"] = "foo"
# error: Non-overlapping equality check (left operand type: "Literal['foo']", right operand type: "Literal['bar']") [comparison-ove…
-
```py
from typing import TypeVar
T = TypeVar("T", int, str)
def foo(cls: type[T]) -> T:
...
asdf: type
reveal_type(type) # error: Expression type contains "Any"
a = foo(asdf) # …
-
It is already possible to silence errors using `# type: ignore` on individual lines, and - since #626) also for a whole file.
Additionally it would be nice to ignore errors on individual blocks. Es…
-
In any CMS we have a good usecase for implementing some sort of variable system to dynamically insert text into title and metadescription. Based on such variables we can for instance have templates fo…
-
## The context
Currently, if your cached endpoint uses arguments that should be ignored when generating a cache key, you have no choice but to create a custom key builder.
E.g. the following end…
-
**Bug Report**
overloaded class-decorator is seen as not Callable when used on an overloaded method
(A clear and concise description of what the bug is.)
**To Reproduce**
```python
fr…
-
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.
## Config Migration Needed
- […
-
Hello, first off -- thank you for your work on this great framework!
I would like to know if the framework somehow allows the inheritance of registered endpoints from the base class.
**Example:*…