add missing import

This commit is contained in:
Jean-Paul Calderone 2021-11-04 14:12:54 -04:00
parent b69e8d013b
commit 7a59aa83bb

View File

@ -13,6 +13,11 @@ if PY2:
import struct
try:
from typing import Union
except ImportError:
pass
import attr
from nacl.hash import blake2b