Skip to content

Commit b6142bf

Browse files
committed
fix: include period as a known delimiter
1 parent 9970392 commit b6142bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openapi_python_client/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from keyword import iskeyword
44
from typing import Any, List
55

6-
DELIMITERS = " _-"
6+
DELIMITERS = r"\. _-"
77

88

99
class PythonIdentifier(str):

0 commit comments

Comments
 (0)