Skip to content

Commit 228fd3e

Browse files
committed
Fix autovivify not being passed through from constructor
1 parent b357285 commit 228fd3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sogs/model/user.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def __init__(self, row=None, *, id=None, session_id=None, autovivify=True, touch
3636
returning it.
3737
"""
3838
self._touched = False
39-
self._refresh(row=row, id=id, session_id=session_id)
39+
self._refresh(row=row, id=id, session_id=session_id, autovivify=autovivify)
4040

4141
if touch:
4242
self._touch()

0 commit comments

Comments
 (0)