diff --git a/wobbl_tools/text/format.py b/wobbl_tools/text/format.py index 0bb15b3..8c60f71 100644 --- a/wobbl_tools/text/format.py +++ b/wobbl_tools/text/format.py @@ -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:] diff --git a/wobbl_tools/text/log.py b/wobbl_tools/text/log.py index ab38a34..f7e50e7 100644 --- a/wobbl_tools/text/log.py +++ b/wobbl_tools/text/log.py @@ -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,