Removed some unnecessary information in docstrings.

This commit is contained in:
The Wobbler 2025-03-26 14:02:36 +01:00
parent ff4dffb06b
commit 1e1d319238
2 changed files with 0 additions and 8 deletions

View file

@ -45,8 +45,6 @@ def example(): # just an example of this script
def asap(old: str, add: str, position: int):
"""
ASAP = Add String At Position
(0 is the first character.)
"""
return old[:position] + add + old[position:]
@ -55,8 +53,6 @@ def asap(old: str, add: str, position: int):
def rsap(old: str, replace: str, position: int):
"""
RSAP = Replace String At Position
(0 is the first character.)
"""
return old[:position] + replace + old[position + 1:]

View file

@ -19,10 +19,6 @@ _msg_types = { # message types with colors
class Log:
"""
Using this class, you can easily write to logfiles.
"""
def __init__(
self,
log_path: str | PathLike = None,