Small cleanups
- No more shadowing of `blendfile` name. - Removed unused import - Formatting
This commit is contained in:
parent
889f3abd25
commit
4f4a67784d
@ -3,7 +3,6 @@ import enum
|
|||||||
import functools
|
import functools
|
||||||
import logging
|
import logging
|
||||||
import pathlib
|
import pathlib
|
||||||
import queue
|
|
||||||
import tempfile
|
import tempfile
|
||||||
import typing
|
import typing
|
||||||
|
|
||||||
@ -52,14 +51,13 @@ class AssetAction:
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class Packer:
|
class Packer:
|
||||||
def __init__(self,
|
def __init__(self,
|
||||||
blendfile: pathlib.Path,
|
bfile: pathlib.Path,
|
||||||
project: pathlib.Path,
|
project: pathlib.Path,
|
||||||
target: pathlib.Path,
|
target: pathlib.Path,
|
||||||
noop=False) -> None:
|
noop=False) -> None:
|
||||||
self.blendfile = blendfile
|
self.blendfile = bfile
|
||||||
self.project = project
|
self.project = project
|
||||||
self.target = target
|
self.target = target
|
||||||
self.noop = noop
|
self.noop = noop
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user