1
0

replace some erroneous usages of IntFlag with IntEnum

This commit is contained in:
SomberNight
2022-06-29 18:07:03 +02:00
parent 9f1da8422b
commit 1b6706bed6
3 changed files with 6 additions and 5 deletions

View File

@@ -26,7 +26,7 @@
import io
import hashlib
from typing import Sequence, List, Tuple, NamedTuple, TYPE_CHECKING, Dict, Any, Optional
from enum import IntEnum, IntFlag
from enum import IntEnum
from . import ecc
from .crypto import sha256, hmac_oneshot, chacha20_encrypt