Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on Jun 1, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 2 src/oidcmsg/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "Roland Hedberg"
__version__ = "1.5.4"
__version__ = "1.6.0"

import os
from typing import Dict
Expand Down
4 changes: 2 additions & 2 deletions 4 src/oidcmsg/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,12 @@ def __getattr__(self, item, default=None):
return default

def __setattr__(self, key, value):
if key in self:
if key in self and self.key:
raise KeyError('{} has already been set'.format(key))
super(Base, self).__setitem__(key, value)

def __setitem__(self, key, value):
if key in self:
if key in self and self.key:
raise KeyError('{} has already been set'.format(key))
super(Base, self).__setitem__(key, value)

Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.