Skip to content

Commit a8da5f3

Browse files
fix #630 (#631)
1 parent cc74e5a commit a8da5f3

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0.23.1
2+
------
3+
* Remove `tomli` import. See #630
4+
15
0.23.0
26
------
37

responses/__init__.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,6 @@
2626
from warnings import warn
2727

2828
import yaml
29-
30-
try:
31-
import tomli as _toml
32-
except ImportError:
33-
# python 3.11
34-
import tomllib as _toml # type: ignore[no-redef] # noqa: F401
35-
3629
from requests.adapters import HTTPAdapter
3730
from requests.adapters import MaxRetryError
3831
from requests.exceptions import ConnectionError

0 commit comments

Comments
 (0)