Skip to content

Commit c02236e

Browse files
committed
Disable unicode characters support in identifiers (#59)
1 parent ff70abc commit c02236e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pydbml/definitions/generic.py

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

55
pp.ParserElement.set_default_whitespace_chars(' \t\r')
66

7-
name = pp.Word(pp.unicode.alphanums + '_') | pp.QuotedString('"')
7+
name = pp.Word(pp.alphanums + '_') | pp.QuotedString('"')
88

99
# Literals
1010

0 commit comments

Comments
 (0)