Passed
Push — main ( 9b73b1...666399 )
by Peter
01:12
created

pyclean.bytecode   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 3
dl 0
loc 9
rs 10
c 0
b 0
f 0
1
# SPDX-FileCopyrightText: 2020 Peter Bittner <[email protected]>
2
#
3
# SPDX-License-Identifier: GPL-3.0-or-later
4
5
"""Python bytecode file and directory constants."""
6
7
BYTECODE_DIRS = ['__pycache__']
8
BYTECODE_FILES = ['.pyc', '.pyo']
9