Skip to content

Commit

Permalink
fix: duplicate scopes
Browse files Browse the repository at this point in the history
  • Loading branch information
NiceAesth committed Aug 25, 2023
1 parent 1b6bfa9 commit ddd7757
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aiosu/models/scopes.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ class Scopes(IntFlag):
DELEGATE = 1 << 4
CHAT_READ = 1 << 5
CHAT_WRITE = 1 << 6
CHAT_WRITE_MANAGE = 1 << 6
LAZER = 1 << 7 # unused, lazer endpoints are not planned for support
CHAT_WRITE_MANAGE = 1 << 7
LAZER = 1 << 8 # unused, lazer endpoints are not planned for support

def __flags__(self) -> list[Scopes]:
scopes_list = [scope for scope in Scopes if self & scope]
Expand Down

0 comments on commit ddd7757

Please sign in to comment.