Skip to content

Commit

Permalink
fixed lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
SmithSamuelM committed Mar 18, 2024
1 parent 6fba640 commit dd11613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/keri/core/counting.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ def _exfil(self, qb64b):
Extracts self.code and self.count from qualified base64 bytes qb64b
"""
if not qb64b: # empty need more bytes
raise ShortageError("Empty material, Need more characters.")
raise kering.ShortageError("Empty material, Need more characters.")

first = qb64b[:2] # extract first two char code selector
if hasattr(first, "decode"):
Expand Down

0 comments on commit dd11613

Please sign in to comment.