mirror of
https://github.com/blender/blender-addons.git
synced 2025-07-25 16:05:20 +00:00

Move copyright text to SPDX-FileCopyrightText or set to the Blender Foundation so "make check_licenses" now runs without warnings.
17 lines
225 B
Python
17 lines
225 B
Python
# SPDX-FileCopyrightText: 2010-2022 Blender Foundation
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
# Report errors with the mesh.
|
|
|
|
|
|
_data = []
|
|
|
|
|
|
def update(*args):
|
|
_data[:] = args
|
|
|
|
|
|
def info():
|
|
return tuple(_data)
|