Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 0aa2a22

Browse files
committed
Allow a class attribute to be either a dictionary or a class instance that acts as a dictionary. - Fixed bugs.
1 parent ef04b6c commit 0aa2a22

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def run_tests(self):
5151
author_email="[email protected]",
5252
license="Apache 2.0",
5353
url='https://github.com/IdentityPython/oidcmsg/',
54-
packages=["oidcmsg", "oidcmsg/oauth2", "oidcmsg/oidc"],
54+
packages=["oidcmsg", "oidcmsg/oauth2", "oidcmsg/oidc", "oidcmsg/storage"],
5555
package_dir={"": "src"},
5656
classifiers=[
5757
"Development Status :: 4 - Beta",

Diff for: src/oidcmsg/impexp.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from cryptojwt.utils import importer
77
from cryptojwt.utils import qualified_name
88

9-
from oidcmsg.abfile import DictType
9+
from oidcmsg.storage import DictType
1010
from oidcmsg.message import Message
1111

1212

0 commit comments

Comments
 (0)