From 142128cb9551ec9993fbdbee45b81f9d0cb1b951 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 17:07:37 +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`.