Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump aiohttp from 3.7.3 to 3.7.4 #1

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion connect.py
Expand Up @@ -26,7 +26,8 @@ async def on_message(message):
# Then send piazza post to server

# if "piazza.com" in message.content:
if urls := re.findall(REG_PATTERN, message.content):
urls = re.findall(REG_PATTERN, message.content)
if urls:
for url in urls:
full_url = url[0]
class_hash = url[1]
Expand Down
5 changes: 5 additions & 0 deletions remove.txt
@@ -0,0 +1,5 @@
ODM3OTA4NDk1NDc4Njg1NzE3.YIzZGA.km40KLJKFm3fRgT50qa0Zx0i08A
837122769132847164
kuan.chu@mail.utoronto.ca
daffychu0710

2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,4 +1,4 @@
aiohttp==3.7.3
aiohttp==3.7.4
async-timeout==3.0.1
attrs==20.3.0
beautifulsoup4==4.9.3
Expand Down