This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
v0.4.0
Changelog:
- Update output format when the
--verbose
flag is provided.
old:
test1.py:7:0: print("module")
test1.py:18:8: print("property")
test1.py:27:4: print("method")
test1.py:29:8: print("for loop")
test2.py:7:0: print("module")
test2.py:18:8: print("property")
test2.py:27:4: print("method")
test2.py:29:8: print("for loop")
new:
test1.py
7 print("module")
18 print("property")
27 print("method")
29 print("for loop")
test2.py
7 print("module")
18 print("property")
27 print("method")
29 print("for loop")
Full Changelog: v0.3.2...v0.4.0