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 84a540f commit 9ed8c70Copy full SHA for 9ed8c70
pytensor/printing.py
@@ -4,7 +4,6 @@
4
import logging
5
import os
6
import sys
7
-import warnings
8
from abc import ABC, abstractmethod
9
from contextlib import contextmanager
10
from copy import copy
@@ -120,7 +119,6 @@ def debugprint(
120
119
print_destroy_map: bool = False,
121
print_view_map: bool = False,
122
print_fgraph_inputs: bool = False,
123
- ids: Optional[IDTypesType] = None,
124
) -> Union[str, TextIO]:
125
r"""Print a graph as text.
126
@@ -193,14 +191,6 @@ def debugprint(
193
191
else:
194
192
_file = file
195
196
- if ids is not None:
197
- warnings.warn(
198
- "`ids` is deprecated; use `id_type` instead.",
199
- DeprecationWarning,
200
- stacklevel=2,
201
- )
202
- id_type = ids
203
-
204
if done is None:
205
done = dict()
206
0 commit comments