Remove Interface subclass, as IURI is an interface. Fixes mypy error.

This commit is contained in:
Jason R. Coombs 2020-11-23 14:08:23 -05:00
parent df31d7db5b
commit dec6f6d647

View File

@ -682,7 +682,7 @@ class IURI(Interface):
passing into init_from_string."""
class IVerifierURI(Interface, IURI):
class IVerifierURI(IURI):
def init_from_string(uri):
"""Accept a string (as created by my to_string() method) and populate
this instance with its data. I am not normally called directly,