Skip to content

Commit 4560a40

Browse files
committed
Add markers for future refactor
Signed-off-by: Ivan Kanakarakis <[email protected]>
1 parent 149edd2 commit 4560a40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/satosa/frontends/saml2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -742,8 +742,8 @@ def _handle_authn_response(self, context, internal_response):
742742
if self.KEY_CO_ATTRIBUTES in co_config:
743743
attributes = internal_response.attributes
744744
for attribute, value in co_config[self.KEY_CO_ATTRIBUTES].items():
745-
# This should be refactored when Python 3.4 support is
746-
# no longer required to use isinstance(value, Iterable).
745+
# XXX This should be refactored when Python 3.4 support is
746+
# XXX no longer required to use isinstance(value, Iterable).
747747
try:
748748
if iter(value) and not isinstance(value, str):
749749
attributes[attribute] = value

0 commit comments

Comments
 (0)