Skip to content

Commit a94b1e6

Browse files
committed
Remove VarName type and its imports
1 parent a2318e4 commit a94b1e6

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

pymc/model/core.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@
6565
)
6666
from pymc.util import (
6767
UNSET,
68-
VarName,
6968
WithMemoization,
7069
_UnsetType,
7170
get_transformed_name,

pymc/model_graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from pytensor.tensor.variable import TensorVariable
2727

2828
from pymc.model.core import modelcontext
29-
from pymc.util import VarName, get_default_varnames, get_var_name
29+
from pymc.util import get_default_varnames, get_var_name
3030

3131
__all__ = (
3232
"ModelGraph",

pymc/util.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131

3232
from pymc.exceptions import BlockModelAccessError
3333

34-
VarName = NewType("VarName", str)
3534

3635

3736
class _UnsetType:

0 commit comments

Comments
 (0)