mirror of
https://github.com/mtshiba/pylyzer.git
synced 2025-08-03 22:08:17 +00:00
246 B
246 B
Pylyzer-specific errors
E0001: Reassignment of a function referenced by other functions
def g(): return f()
def f(): return 1
def f(): return "a" # E0001: Reassignment of a function referenced by other functions
print(g())