Skip to content

Commit

Permalink
Fix formatting (E302)
Browse files Browse the repository at this point in the history
  • Loading branch information
MCMi460 committed Aug 6, 2024
1 parent d6709d3 commit d392e6d
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions pypresence/types.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
import enum

# https://discord.com/developers/docs/game-sdk/activities#data-models-activitytype-enum
# ""type" must be one of 0, 2, 3, 5" -- Discord only implemented these four

class ActivityType(enum.Enum):
"""
https://discord.com/developers/docs/game-sdk/activities#data-models-activitytype-enum
"type" must be one of 0, 2, 3, 5 -- Discord only implemented these four
"""

PLAYING = 0
#STREAMING = 1
# STREAMING = 1
LISTENING = 2
WATCHING = 3
#CUSTOM = 4
# CUSTOM = 4
COMPETING = 5

0 comments on commit d392e6d

Please sign in to comment.