Skip to content

Commit 571fbf2

Browse files
committed
Wrong commit
1 parent 48a6729 commit 571fbf2

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/betterproto/enum.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import sys
44
from enum import (
5-
EnumMeta,
65
IntEnum,
6+
EnumMeta,
77
)
88
from types import MappingProxyType
99
from typing import (
@@ -41,6 +41,11 @@ def __new__(
4141
mcs, name: str, bases: Tuple[type, ...], namespace: Dict[str, Any]
4242
) -> Self:
4343
value_map = {}
44+
45+
46+
47+
48+
4449
member_map = {}
4550

4651
new_mcs = type(

0 commit comments

Comments
 (0)