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`.