Skip to content

Commit fd50796

Browse files
EepyElvyrai0bs
authored andcommitted
revert: correct merge conflicts
1 parent cd55244 commit fd50796

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

interactions/api/models/flags.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,15 @@ class AppFlags(IntFlag):
121121
GATEWAY_MESSAGE_CONTENT_LIMITED = 1 << 19
122122

123123

124+
<<<<<<< HEAD
124125
class StatusType(str, Enum):
125126
"""
126127
An enumerable object representing Discord status icons that a user may have.
128+
=======
129+
class StatusType(StrEnum):
130+
"""
131+
A string enum representing Discord status icons that a user may have.
132+
>>>>>>> e1320ac (feat: Add localisation enum (#522))
127133
"""
128134

129135
ONLINE = "online"

interactions/enums.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from enum import Enum, IntEnum
1+
from enum import IntEnum, StrEnum
22

33

44
class ApplicationCommandType(IntEnum):

0 commit comments

Comments
 (0)