Skip to content

Commit e448a7c

Browse files
committed
fix count lines for all langs
1 parent 5cf4a76 commit e448a7c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spice/analyzers/count_lines.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# this will count lines straight from the raw code
22
def count_lines(code):
3-
return code.count("\n") + 1
3+
return code.count("\n") + 1
4+

0 commit comments

Comments
 (0)