Skip to content
This repository was archived by the owner on Dec 20, 2021. It is now read-only.

Commit b8553f4

Browse files
committed
Keep track of original json objects
1 parent 80aa07d commit b8553f4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

vrcpy/objects.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ def __init__(self, client):
1515
self.arrTypes = {} # Dictionary of what keys are arrays with special types
1616
self.client = client
1717

18+
self._dict = {} # Dictionary that is assigned
19+
1820
self.cacheTask = None # cacheTask for async objects using __cinit__
1921

2022
def _assign(self, obj):
@@ -37,6 +39,8 @@ def _assign(self, obj):
3739
else:
3840
self.__cinit__()
3941

42+
self._dict = obj
43+
4044
def _objectIntegrety(self, obj):
4145
if self.only == []:
4246
for key in self.unique:

0 commit comments

Comments
 (0)