Refactor Vertex params assignment

This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-02-20 16:22:15 -03:00
commit 9211b1c8e5

View file

@ -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):
"""