pyclean.__main__   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 4
dl 0
loc 13
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
"""
6
Main entry point for running pyclean as a module.
7
"""
8
9
from .cli import main
10
11
if __name__ == '__main__':
12
    main()
13