gana

GNUnet Assigned Numbers Authority
Log | Files | Refs | README | LICENSE

commit 9d38f712c153727dbb895673d6d9841be57c12c9
parent 068cfc6a252f44799a7e9bd7914e90f72ad60091
Author: Christian Grothoff <christian@grothoff.org>
Date:   Thu, 29 Oct 2020 00:17:42 +0100

use IntEnum

Diffstat:
Mgnu-taler-error-codes/py.header | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu-taler-error-codes/py.header b/gnu-taler-error-codes/py.header @@ -21,10 +21,10 @@ but it does apply to this file. """ -from enum import Enum,unique +from enum import IntEnum,unique """ Error codes used by GNU Taler. """ @unique -class ErrorCode(Enum): +class ErrorCode(IntEnum):