From 377db1946433c2ae719058674191e534dc4f55f0 Mon Sep 17 00:00:00 2001 From: Donald Campbell <125581724+donaldcampbelljr@users.noreply.github.com> Date: Thu, 20 Jun 2024 15:31:17 -0400 Subject: [PATCH] update comments to be more accurate --- looper/project.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/looper/project.py b/looper/project.py index f8a4c7d6..6487513c 100644 --- a/looper/project.py +++ b/looper/project.py @@ -135,7 +135,7 @@ def __init__(self, cfg=None, amendments=None, divcfg_path=None, **kwargs): except NotImplementedError: self.name = None - # add sample pipeline interface to the project + # consolidate sample modifiers if kwargs.get(SAMPLE_MODS_KEY) and self._modifier_exists(): _LOGGER.warning( "Sample modifiers were provided in Looper Config and in PEP Project Config. Merging..." @@ -148,6 +148,7 @@ def __init__(self, cfg=None, amendments=None, divcfg_path=None, **kwargs): self.config.setdefault("sample_modifiers", {}) self.config["sample_modifiers"] = kwargs.get(SAMPLE_MODS_KEY) + # add sample pipeline interface to the project if kwargs.get(SAMPLE_PL_ARG): self.set_sample_piface(kwargs.get(SAMPLE_PL_ARG))