blender-addons/magic_uv/properties.py
Campbell Barton 016430de4b Cleanup: remove <pep8 compliant> comment
This is no longer necessary, see: T98554.
2022-06-03 11:50:32 +10:00

26 lines
522 B
Python

# SPDX-License-Identifier: GPL-2.0-or-later
__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "6.6"
__date__ = "22 Apr 2022"
from .utils.property_class_registry import PropertyClassRegistry
# Properties used in this add-on.
# pylint: disable=W0612
class MUV_Properties():
pass
def init_props(scene):
scene.muv_props = MUV_Properties()
PropertyClassRegistry.init_props(scene)
def clear_props(scene):
PropertyClassRegistry.del_props(scene)
del scene.muv_props