Skip to content

Commit

Permalink
Fix MutableMapping deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
zhelyabuzhsky authored and tpazderka committed Jan 28, 2020
1 parent 44d35cf commit 20054ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/oic/oauth2/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
import json
import logging
import warnings
from collections import MutableMapping
from collections import namedtuple
from collections.abc import MutableMapping
from json import JSONDecodeError
from typing import Any # noqa - This is used for MyPy
from typing import Dict # noqa - This is used for MyPy
Expand Down

0 comments on commit 20054ce

Please sign in to comment.