Skip to content

Commit e218bde

Browse files
committed
Fixed minor bug with getting nested attributes
1 parent 923836f commit e218bde

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ activate:
55
pipenv shell
66

77
setup:
8-
pipenv install -e .
8+
pipenv install -e . --skip-lock --ignore-pipfile -v
99

1010
test:
1111
pipenv run python setup.py test

rebase/core/object.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ def get(self, *attrs) -> Dict[str, Any]:
227227
228228
"""
229229
return {
230-
k: v.get(*v.attributes)
230+
k: v.attributes
231231
if isinstance(v, Object) else [
232232
x.attributes
233233
if isinstance(x, Object) else x

0 commit comments

Comments
 (0)