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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion connect.py
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
ODM3OTA4NDk1NDc4Njg1NzE3.YIzZGA.km40KLJKFm3fRgT50qa0Zx0i08A
837122769132847164
[email protected]
daffychu0710

2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -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