diff --git a/io_scene_gltf2/io/com/gltf2_io_lights_punctual.py b/io_scene_gltf2/io/com/gltf2_io_lights_punctual.py index 3dc8704cceae18505be494cff72e6521a4739e51..fe29ebc321924d6671596828913f9d3a9ec8af93 100644 --- a/io_scene_gltf2/io/com/gltf2_io_lights_punctual.py +++ b/io_scene_gltf2/io/com/gltf2_io_lights_punctual.py @@ -12,6 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. +# FIXME, this goes against Blender's best practice. from io_scene_gltf2.io.com.gltf2_io import * @@ -73,4 +74,3 @@ class Light: self.extensions) result["extras"] = self.extras return result - diff --git a/io_scene_gltf2/io/exp/gltf2_io_draco_compression_extension.py b/io_scene_gltf2/io/exp/gltf2_io_draco_compression_extension.py index 2d42ce10c5572040b10c0e3003735acd17c3b794..0230bdfc5a32bba93f1f717fc1b1579a91967f5a 100644 --- a/io_scene_gltf2/io/exp/gltf2_io_draco_compression_extension.py +++ b/io_scene_gltf2/io/exp/gltf2_io_draco_compression_extension.py @@ -14,7 +14,10 @@ import bpy import sys + +# FIXME, this goes against Blender's best practice. from ctypes import * + from pathlib import Path from io_scene_gltf2.io.exp.gltf2_io_binary_data import BinaryData @@ -240,4 +243,3 @@ def __compress_primitive(primitive, dll, export_settings): dll.disposeCompressor(compressor) pass -