Welcome to mirror list, hosted at ThFree Co, Russian Federation.

report.py « object_print3d_utils - git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 633b65c787cd322ef72955fe1ddfff7cb5cfee9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# SPDX-License-Identifier: GPL-2.0-or-later

# <pep8-80 compliant>

# Report errors with the mesh.


_data = []


def update(*args):
    _data[:] = args


def info():
    return tuple(_data)