From 875962ed9b2440272bd95775650f13bcccdc364b Mon Sep 17 00:00:00 2001 From: Simone Barbieri Date: Fri, 3 Jul 2020 09:27:43 +0100 Subject: [PATCH] Hound fixes --- pype/hosts/blender/plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pype/hosts/blender/plugin.py b/pype/hosts/blender/plugin.py index 33cccd7d5e..ab53d49041 100644 --- a/pype/hosts/blender/plugin.py +++ b/pype/hosts/blender/plugin.py @@ -5,7 +5,7 @@ from typing import Dict, List, Optional import bpy -from avalon import api, blender +from avalon import api VALID_EXTENSIONS = [".blend"] @@ -26,7 +26,7 @@ def get_unique_number( ) -> str: """Return a unique number based on the asset name.""" avalon_containers = [ - c for c in bpy.data.collections + c for c in bpy.data.collections if c.name == 'AVALON_CONTAINERS' ] loaded_assets = []