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

Commit 617b986

Browse files
committed
isorted
1 parent ff1a0f2 commit 617b986

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

doc/howto/message.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ simple symmetric one:
107107
>>> from oidcmsg.message import Message
108108
>>> from cryptojwt.jwk.hmac import SYMKey
109109
>>> msg = Message(key='value', another=2)
110-
>>> keys = [SYMKey(key="A1B2C3D4")]
110+
>>> keys = [SYMKey(key="A1B2C3D4E5F6G7H8")]
111111

112112
>>> jws = msg.to_jwt(keys, "HS256")
113113
>>> print(jws)

src/oidcmsg/logging.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
"""Common logging functions"""
2-
3-
import os
42
import logging
3+
import os
54
from logging.config import dictConfig
65
from typing import Optional
76

87
import yaml
98

10-
119
LOGGING_CONF = 'logging.yaml'
1210

1311
LOGGING_DEFAULT = {

0 commit comments

Comments
 (0)