You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Chipping away at #183
Got rid of the monkeypatched `LAMBDA`.
What's changed ->
- Default argument values cannot be forward references anymore:
```python
def bar(x: type = SomeClass) -> None: ... # F821 undefined name 'SomeClass'
class SomeClass: ...
```
I think it makes sense to not allow this anyway - it's similar to what
we did with classes previously.
0 commit comments