pyclean.__main__   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 4
dl 0
loc 11
rs 10
c 0
b 0
f 0
1
# SPDX-FileCopyrightText: 2019 Peter Bittner <[email protected]>
2
#
3
# SPDX-License-Identifier: GPL-3.0-or-later
4
5
"""Main entry point for running pyclean as a module."""
6
7
from .cli import main
8
9
if __name__ == '__main__':
10
    main()
11