Skip to content

Commit

Permalink
fix #630 (#631)
Browse files Browse the repository at this point in the history
  • Loading branch information
beliaev-maksim committed Mar 10, 2023
1 parent cc74e5a commit a8da5f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.23.1
------
* Remove `tomli` import. See #630

0.23.0
------

Expand Down
7 changes: 0 additions & 7 deletions responses/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,6 @@
from warnings import warn

import yaml

try:
import tomli as _toml
except ImportError:
# python 3.11
import tomllib as _toml # type: ignore[no-redef] # noqa: F401

from requests.adapters import HTTPAdapter
from requests.adapters import MaxRetryError
from requests.exceptions import ConnectionError
Expand Down

0 comments on commit a8da5f3

Please sign in to comment.