Skip to content

Commit

Permalink
[metrics] Account for new ASDL comment lines
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy C committed May 9, 2023
1 parent 843ad97 commit f0f830b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metrics/source-code.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ for path in sys.argv[1:]:
with open(path) as f:
for line in f:
line = line.strip()
if not line or line.startswith("--"):
if not line or line.startswith("#"):
continue
num_lines += 1
Expand Down

0 comments on commit f0f830b

Please sign in to comment.