Expand comment to provide more context.

This commit is contained in:
Jason R. Coombs 2020-12-18 10:33:30 -05:00
parent 99da74fffb
commit 51b0b201b4

View File

@ -61,7 +61,12 @@ class IToken(ICredentials):
pass
# Shoobx/mypy-zope#26
# Workaround for Shoobx/mypy-zope#26, where without suitable
# stubs for twisted classes (ICredentials), IToken does not
# appear to be an Interface. The proper fix appears to be to
# create stubs for twisted
# (https://twistedmatrix.com/trac/ticket/9717). For now,
# bypassing the inline decorator syntax works around the issue.
_itoken_impl = implementer(IToken)