From 4b44de421e9bf071987eb83721d026c2f8af468f Mon Sep 17 00:00:00 2001 From: Meenal Jhajharia Date: Sat, 31 Jul 2021 14:12:02 +0530 Subject: [PATCH] Update developer_guide_implementing_distribution.md --- docs/source/developer_guide_implementing_distribution.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/source/developer_guide_implementing_distribution.md b/docs/source/developer_guide_implementing_distribution.md index 82c01d7996..ae3baa3a0e 100644 --- a/docs/source/developer_guide_implementing_distribution.md +++ b/docs/source/developer_guide_implementing_distribution.md @@ -35,6 +35,7 @@ The following snippet illustrates how to create a new `RandomVariable`: from aesara.tensor.var import TensorVariable from aesara.tensor.random.op import RandomVariable +from typing import List, Tuple # Create your own `RandomVariable`... class BlahRV(RandomVariable):