| Total Complexity | 0 |
| Total Lines | 9 |
| Duplicated Lines | 0 % |
| Changes | 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 |