Refactor Vertex params assignment
This commit is contained in:
parent
bf8330e152
commit
9211b1c8e5
1 changed files with 2 additions and 2 deletions
|
|
@ -305,8 +305,8 @@ class Vertex:
|
|||
else:
|
||||
params.pop(key, None)
|
||||
# Add _type to params
|
||||
self.params = {}
|
||||
self._raw_params = params
|
||||
self.params = params
|
||||
self._raw_params = params.copy()
|
||||
|
||||
async def _build(self, user_id=None):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue