mirror of
https://github.com/aclist/dztui.git
synced 2026-08-26 17:57:06 +02:00
9 lines
200 B
Python
9 lines
200 B
Python
def test_headings():
|
|
with open("CHANGELOG.md", "r") as f:
|
|
lines = f.readlines()
|
|
for line in lines:
|
|
if line.startswith("#"):
|
|
pass
|
|
# TODO: use regex
|
|
pass
|