From 4f4a67784d0c44a43a832c54bcb1877660e74a4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 16 Mar 2018 10:10:29 +0100 Subject: [PATCH] Small cleanups - No more shadowing of `blendfile` name. - Removed unused import - Formatting --- blender_asset_tracer/pack/__init__.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/blender_asset_tracer/pack/__init__.py b/blender_asset_tracer/pack/__init__.py index 2d9a26b..5c65846 100644 --- a/blender_asset_tracer/pack/__init__.py +++ b/blender_asset_tracer/pack/__init__.py @@ -3,7 +3,6 @@ import enum import functools import logging import pathlib -import queue import tempfile import typing @@ -52,14 +51,13 @@ class AssetAction: """ - class Packer: def __init__(self, - blendfile: pathlib.Path, + bfile: pathlib.Path, project: pathlib.Path, target: pathlib.Path, noop=False) -> None: - self.blendfile = blendfile + self.blendfile = bfile self.project = project self.target = target self.noop = noop