From 9b7efa72ea2521a088245821ece13ff18d91df7a Mon Sep 17 00:00:00 2001 From: George Hotz Date: Tue, 23 Apr 2024 11:56:03 +0400 Subject: [PATCH] hotfix: skip 0 line count files in sz.py --- sz.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sz.py b/sz.py index 990fcde6..aa775392 100755 --- a/sz.py +++ b/sz.py @@ -21,7 +21,7 @@ def gen_stats(base_path="."): with tokenize.open(filepath) as file_: tokens = [t for t in tokenize.generate_tokens(file_.readline) if t.type in TOKEN_WHITELIST and not is_docstring(t)] token_count, line_count = len(tokens), len(set([x for t in tokens for x in range(t.start[0], t.end[0]+1)])) - table.append([relfilepath, line_count, token_count/line_count]) + if line_count > 0: table.append([relfilepath, line_count, token_count/line_count]) return table def gen_diff(table_old, table_new):