From c65e0a2db8b2ab3196e94cffef8f4c6790e20e75 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 5 Aug 2024 17:15:22 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/tendo/singleton.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/tendo/singleton.py b/src/tendo/singleton.py index 7151241..da57560 100755 --- a/src/tendo/singleton.py +++ b/src/tendo/singleton.py @@ -15,7 +15,6 @@ class SingleInstanceException(BaseException): class SingleInstance: - """Class that can be instantiated only once per machine. If you want to prevent your script from running in parallel just instantiate SingleInstance() class. If is there another instance already running it will throw a `SingleInstanceException`.