Fix add-ons with Python 3.12 by replacing "imp" with "importlib"
[blender-addons.git] / object_print3d_utils / report.py
blob30fdc567f813126de64bd61e1e51a8d967313ce4
1 # SPDX-FileCopyrightText: 2010-2022 Blender Foundation
3 # SPDX-License-Identifier: GPL-2.0-or-later
5 # Report errors with the mesh.
8 _data = []
11 def update(*args):
12 _data[:] = args
15 def info():
16 return tuple(_data)