Skip to content

Commit

Permalink
Update main.py
Browse files Browse the repository at this point in the history
* `list_of_char` is extended
  • Loading branch information
jzsmoreno committed Sep 22, 2023
1 parent b348df9 commit a7d6ba1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pydbsmgr/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def remove_char(input_string: str) -> str:
input_string : str
The string with specified characters removed.
"""
list_of_char = ["#", "$", "*", "?", "!", "(", ")", "&"]
list_of_char = ["#", "$", "*", "?", "!", "(", ")", "&", "%"]
for char in list_of_char:
try:
input_string = input_string.replace(char, "")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="pydbsmgr",
version="0.4.0",
version="0.4.1",
author="J. A. Moreno-Guerra",
author_email="[email protected]",
description="Testing installation of Package",
Expand Down
2 changes: 1 addition & 1 deletion test/test_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def remove_char(input_string: str) -> str:
input_string : str
The string with specified characters removed.
"""
list_of_char = ["#", "$", "*", "?", "!", "(", ")", "&"]
list_of_char = ["#", "$", "*", "?", "!", "(", ")", "&", "%"]
for char in list_of_char:
try:
input_string = input_string.replace(char, "")
Expand Down

0 comments on commit a7d6ba1

Please sign in to comment.