Skip to content

Commit c835725

Browse files
author
Diego Contreras
committed
Fix bug with non-alphabet characters
1 parent d8ef1a6 commit c835725

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RobotCDocs/CommentFilter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class CommentFilter:
1010
def __init__(self):
11-
self.filter = "qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM*&"
11+
self.filter = "qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM*&_1234567890"
1212
pass
1313

1414
def removeType(self, line, index = 2) -> str:

0 commit comments

Comments
 (0)