From 82fec226fe1d56548793114933fb8695155b1ad2 Mon Sep 17 00:00:00 2001 From: AlexNg Date: Sat, 25 May 2024 19:21:16 +0800 Subject: [PATCH] docs: Only have docs url in __init__ This is to primarily make developing this project easier and not have to update 5 other files every time --- src/thread/_types.py | 2 -- src/thread/decorators/_processor.py | 2 -- src/thread/decorators/_threaded.py | 2 -- src/thread/exceptions.py | 2 -- src/thread/thread.py | 2 -- 5 files changed, 10 deletions(-) diff --git a/src/thread/_types.py b/src/thread/_types.py index 9fa2921..d6de736 100644 --- a/src/thread/_types.py +++ b/src/thread/_types.py @@ -1,7 +1,5 @@ """ ## Types - -Documentation: https://thread.ngjx.org/docs/v2.0.1 """ from typing import Any, Literal, Callable, Union, Sized diff --git a/src/thread/decorators/_processor.py b/src/thread/decorators/_processor.py index 92a90d3..aabf59f 100644 --- a/src/thread/decorators/_processor.py +++ b/src/thread/decorators/_processor.py @@ -1,7 +1,5 @@ """ ## Processor - -Documentation: https://thread.ngjx.org/docs/v2.0.1 """ from functools import wraps diff --git a/src/thread/decorators/_threaded.py b/src/thread/decorators/_threaded.py index 4d2d00d..7070cfc 100644 --- a/src/thread/decorators/_threaded.py +++ b/src/thread/decorators/_threaded.py @@ -1,7 +1,5 @@ """ ## Threaded - -Documentation: https://thread.ngjx.org/docs/v2.0.1 """ from functools import wraps diff --git a/src/thread/exceptions.py b/src/thread/exceptions.py index b789f26..4e7685e 100644 --- a/src/thread/exceptions.py +++ b/src/thread/exceptions.py @@ -1,7 +1,5 @@ """ ## Thread Exceptions - -Documentation: https://thread.ngjx.org/docs/v2.0.1 """ import traceback diff --git a/src/thread/thread.py b/src/thread/thread.py index 9760ed6..aa4fe90 100644 --- a/src/thread/thread.py +++ b/src/thread/thread.py @@ -7,8 +7,6 @@ class Thread: ... class ConcurrentProcessing: ... ``` - -Documentation: https://thread.ngjx.org/docs/v2.0.1 """ import sys