sloc-languages 1.2.2

Source line analysis tool with CLI, web UI, HTML/PDF reports, and CI/CD integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
"""Module docstring."""


def greet(name):
    """Return a greeting string."""
    return "Hello, " + name  # inline comment


class Greeter:
    """Greeter class."""

    def hello(self):
        pass