Skip to content

Commit

Permalink
fixup! feat: key interface
Browse files Browse the repository at this point in the history
  • Loading branch information
phbelitz committed Apr 8, 2022
1 parent 953e66e commit 7e72026
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions connaisseur/keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ class KeyInterface:
"""
Interface form which all keys inherit.
"""

def __new__(cls, data: object):
instance = super(KeyInterface, cls).__new__(cls)
instance.__init__(data)
Expand Down

0 comments on commit 7e72026

Please sign in to comment.