DetachHead

Results 673 issues of DetachHead

command: ``` deno compile --target=x86_64-unknown-linux-gnu src/main.ts ``` output: ``` error: Could not compile: "src" is a directory. ```

bug
cli
needs investigation

closes #133 # outstanding issues - [ ] it's trying (and failing) to run some tests on 3.6 even though 3.6 support was supposedly removed? - [ ] `Callable` in...

topic-stubs

### Gist to reproduce ```python class Foo: @overload def a(self, a: int, /) -> None: ... @overload def a(self, b: str, /) -> None: ... def a(self, c: int |...

bug

```py a: "asdf" | "fdsa" = "asdf" ``` https://github.com/KotlinIsland/basedmypy/pull/137#discussion_r927212154

feature

### Describe the problem, ie expected/actual result (if it's not blatantly obvious) ``` test.py:21:26: error: This usage of this covariant type variable is unsafe as an input parameter. If this...

bug

### Describe the problem, ie expected/actual result (if it's not blatantly obvious) #### expected ```py class Foo(Generic[T_co]): @property def foo(self) -> T_co: ... @foo.setter def foo(self, value): # error: unsafe-variance...

bug
p-3

### Describe the problem, ie expected/actual result (if it's not blatantly obvious) not sure if there are other errors in mypy with newlines in them. if so, i guess this...

bug

### Describe the problem, ie expected/actual result (if it's not blatantly obvious) ### Gist to reproduce ```python class A: @property def foo(self) -> int: ... @foo.setter def foo(self, value): reveal_type(value)...

bug

```py foo: int | None = None def bar(): global foo foo = None baz() if foo is None: # error: condition is always True ... def baz(): global foo...

feature