We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2318e4 commit a94b1e6Copy full SHA for a94b1e6
pymc/model/core.py
@@ -65,7 +65,6 @@
65
)
66
from pymc.util import (
67
UNSET,
68
- VarName,
69
WithMemoization,
70
_UnsetType,
71
get_transformed_name,
pymc/model_graph.py
@@ -26,7 +26,7 @@
26
from pytensor.tensor.variable import TensorVariable
27
28
from pymc.model.core import modelcontext
29
-from pymc.util import VarName, get_default_varnames, get_var_name
+from pymc.util import get_default_varnames, get_var_name
30
31
__all__ = (
32
"ModelGraph",
pymc/util.py
@@ -31,7 +31,6 @@
from pymc.exceptions import BlockModelAccessError
33
34
-VarName = NewType("VarName", str)
35
36
37
class _UnsetType:
0 commit comments