pylyzer/docs/source/errors.md

13 lines
246 B
Markdown

# Pylyzer-specific errors
## E0001: Reassignment of a function referenced by other functions
```python
def g(): return f()
def f(): return 1
def f(): return "a" # E0001: Reassignment of a function referenced by other functions
print(g())
```