Deokjae Lee
Results
2
issues of
Deokjae Lee
Hi, I downloaded lan-mouse-macos-aarch64 v0.10.0 binary from [here](https://github.com/feschber/lan-mouse/releases/tag/v0.10.0). Executing the binary shows a warning. I tried this at M1 macbook running Sonoma 14.2.1. How can I fix this? > WARN...
```python from multimethod import multimethod from typing import NewType Int = NewType("Int", int) @multimethod def foo(_: type[Int]): print("A") foo(Int) # Currently DispatchError is raised. No method found. foo(int) # Currently...