Skip to content

Commit c52d741

Browse files
committed
Removed type annotations
1 parent bcf5637 commit c52d741

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pymc3/model_graph.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ def _get_ancestors(self, var, func) -> MutableSet[RV]:
4747
"""
4848

4949
# this contains all of the variables in the model EXCEPT var...
50-
vars: MutableSet[RV] = set(self.var_list)
50+
vars = set(self.var_list)
5151
vars.remove(var)
52-
53-
blockers: MutableSet[RV] = set()
52+
53+
blockers = set()
5454
retval = set()
5555
def _expand(node) -> Optional[Iterator[Tensor]]:
5656
if node in blockers:

0 commit comments

Comments
 (0)