From 53352465377c18804ca02f50fa0151b7e3e30f58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Al=C3=A1n=20Mu=C3=B1oz?= <alan.munoz@ed.ac.uk> Date: Tue, 31 Jan 2023 11:56:27 +0000 Subject: [PATCH] chore(pyproject): bump to fix columns issue --- pyproject.toml | 2 +- src/postprocessor/grouper.py | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 928bb083..69c7a105 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aliby" -version = "0.1.54" +version = "0.1.55" description = "Process and analyse live-cell imaging data" authors = ["Alan Munoz <alan.munoz@ed.ac.uk>"] packages = [ diff --git a/src/postprocessor/grouper.py b/src/postprocessor/grouper.py index 09bff52e..6b9fa9ee 100644 --- a/src/postprocessor/grouper.py +++ b/src/postprocessor/grouper.py @@ -165,8 +165,6 @@ class Grouper(ABC): ): """Enable different threads for independent chains, particularly useful when aggregating multiple elements.""" if pool is None: - # Alan: why is None changed to 8 - # pool = 8 pass chainers = chainers or self.chainers if pool: -- GitLab