Tracer: don't warn about missing expanders for LI and DATA blocks

This commit is contained in:
Sybren A. Stüvel 2018-03-06 11:40:56 +01:00
parent 9b2254a302
commit 6d1cae1225

View File

@ -9,7 +9,8 @@ import typing
from blender_asset_tracer import blendfile, cdefs
from blender_asset_tracer.blendfile import iterators
_warned_about_types = set()
# Don't warn about these types at all.
_warned_about_types = {b'LI', b'DATA'}
_funcs_for_code = {}
log = logging.getLogger(__name__)