Skip to content

Commit

Permalink
3.5.5
Browse files Browse the repository at this point in the history
- removed reset from align()
  • Loading branch information
SirDank committed Feb 18, 2024
1 parent 2ec4ea1 commit 4d6aec2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dankware/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ def align(text: str) -> str:
for _, __ in enumerate(aligned):
aligned[_] = __.center(width).replace(__,text[_])

return str(reset + '\n'.join(aligned) + reset)
return str('\n'.join(aligned))

# --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

license = "MIT",
name = "dankware",
version = "3.5.4",
version = "3.5.5",
author = "SirDank",

author_email = "SirDankenstein@protonmail.com",
Expand Down

0 comments on commit 4d6aec2

Please sign in to comment.