auto-doc-generator / utils.py
hmnshudhmn24's picture
Upload 13 files
60a6370 verified
def count_lines(file_path):
with open(file_path) as f:
return len(f.readlines())