Skip to content

Commit 4094607

Browse files
authored
don't convert to snake case (#766)
1 parent 19df48f commit 4094607

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/conftest.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,7 @@ def glom(value, path):
175175

176176
# replace foo[index].bar by foo.index.bar
177177
path = PATTERN_INDEX.sub(r".\1", path)
178-
# replace camelCase to snake_case
179-
path = ".".join(snake_case(p) for p in path.split("."))
178+
180179
return g(value, path)
181180

182181

0 commit comments

Comments
 (0)