Skip to content

Commit a0f7f38

Browse files
committed
Bump dependencies to the latest available
1 parent 0316187 commit a0f7f38

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def __init__(self, *args, **kargs):
2222
print('Config doesn\'t exists!')
2323
exit(1)
2424

25-
self.config = yaml.load(open(config))
25+
self.config = yaml.safe_load(open(config))
2626

2727
def email2text(data):
2828
body = email.message_from_bytes(data).get_payload()

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ aiosmtpd==1.4.3
22
atpublic==1.0
33
pyslack==0.4.0
44
PyYAML==6.0
5-
requests==2.20.0
5+
requests==2.28.1
66
pytest==7.2.0
77
html2text

0 commit comments

Comments
 (0)