Skip to content

Commit e86a9cf

Browse files
Fix constant name spelling error (#468)
1 parent b4c45b1 commit e86a9cf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cogs/make_member.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464

6565
ORGANISATION_ID: "Final[str]" = settings["ORGANISATION_ID"]
6666
GROUP_NAME: "Final[str]" = settings["_GROUP_FULL_NAME"]
67-
GROUPED_MEMBRS_URL: "Final[str]" = (
67+
GROUPED_MEMBERS_URL: "Final[str]" = (
6868
f"https://guildofstudents.com/organisation/memberlist/{ORGANISATION_ID}/?sort=groups"
6969
)
7070
BASE_MEMBERS_URL: "Final[str]" = (
@@ -167,7 +167,7 @@ async def make_member(self, ctx: "TeXBotApplicationContext", group_member_id: st
167167
headers=REQUEST_HEADERS,
168168
cookies=REQUEST_COOKIES,
169169
)
170-
async with http_session, http_session.get(GROUPED_MEMBRS_URL) as http_response:
170+
async with http_session, http_session.get(GROUPED_MEMBERS_URL) as http_response:
171171
response_html: str = await http_response.text()
172172

173173
MEMBER_HTML_TABLE_IDS: Final[frozenset[str]] = frozenset(

0 commit comments

Comments
 (0)