mirror of
https://github.com/mtshiba/pylyzer.git
synced 2025-07-07 17:45:00 +00:00
10 lines
187 B
Python
10 lines
187 B
Python
b = False
|
|
if True:
|
|
b = True
|
|
if True:
|
|
b = "a" # ERR
|
|
|
|
counter = 100 # counter: Literal[100]
|
|
while counter > 0:
|
|
counter -= 1 # counter: Int
|
|
counter -= 1.0 # counter: Float
|