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

Commit 86fbb45

Browse files
committed
Bumped version.
1 parent 70d6bbc commit 86fbb45

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

src/oidcmsg/__init__.py

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
__author__ = "Roland Hedberg"
2-
__version__ = "1.3.1"
2+
__version__ = "1.3.2"
33

44
import os
5+
from typing import Dict
56

67
VERIFIED_CLAIM_PREFIX = "__verified"
78

@@ -33,8 +34,14 @@ def proper_path(path):
3334
return path
3435

3536

36-
# This is for adding a base path to path specified in a configuration
37-
def add_base_path(conf, item_paths, base_path):
37+
def add_base_path(conf: Dict[str, str], item_paths: dict, base_path: str):
38+
"""
39+
This is for adding a base path to path specified in a configuration
40+
41+
:param conf: Configuration
42+
:param item_paths: The relative item path
43+
:param base_path: An absolute path to add to the relative
44+
"""
3845
for section, items in item_paths.items():
3946
if section == "":
4047
part = conf

0 commit comments

Comments
 (0)