We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b6d6ce commit 3968d7bCopy full SHA for 3968d7b
pyoverkiz/_case.py
@@ -10,7 +10,7 @@
10
_CAMEL_RE = re.compile(r"([A-Z]+)([A-Z][a-z])|([a-z\d])([A-Z])")
11
12
13
-@functools.lru_cache(maxsize=256)
+@functools.lru_cache(maxsize=1024)
14
def _decamelize_key(key: str) -> str:
15
"""Convert a single camelCase key to snake_case."""
16
result = _CAMEL_RE.sub(r"\1\3_\2\4", key)
0 commit comments