15 lines
168 B
Python
15 lines
168 B
Python
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
# Report errors with the mesh.
|
|
|
|
|
|
_data = []
|
|
|
|
|
|
def update(*args):
|
|
_data[:] = args
|
|
|
|
|
|
def info():
|
|
return tuple(_data)
|