Math Vis Console - fixed errors with invalid objects in console locals #104958

Closed
Andrej wants to merge 3 commits from Andrej730/blender-addons:math_vis_fix_invalid_objects into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
Showing only changes of commit bc9dfe1421 - Show all commits

View File

@ -3,7 +3,6 @@
# SPDX-License-Identifier: GPL-2.0-or-later
import bpy
from _bpy import types as bpy_types
Andrej730 marked this conversation as resolved Outdated

It looks like bpy.types works just as well, why not use that?

It looks like `bpy.types` works just as well, why not use that?

Agreed, fixed.

Agreed, fixed.
def console_namespace():
@ -157,7 +156,7 @@ def console_math_data():
continue
# avoid bpy types to avoid possible errors caused by invalidated objects
if isinstance(var, bpy_types.ID):
if isinstance(var, bpy.types.ID):
continue
if isinstance(var, Matrix):