Skip to content

Commit b477c95

Browse files
authored
fix!: Refix context resolution due to architecture change. (#697)
1 parent 4fb0254 commit b477c95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interactions/api/gateway/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ def __contextualize(self, data: dict) -> object:
378378
_context = "ComponentContext"
379379

380380
data["client"] = self._http
381-
context: object = getattr(__import__("interactions.context"), _context)
381+
context: object = getattr(__import__("interactions.client.context"), _context)
382382

383383
return context(**data)
384384

0 commit comments

Comments
 (0)