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: e6e2cb60f05465d7a5075035b22e7e6002a610f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# SPDX-License-Identifier: GPL-2.0-or-later

# Report errors with the mesh.


_data = []


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


def info():
    return tuple(_data)