Skip to content

Commit

Permalink
prettify code
Browse files Browse the repository at this point in the history
  • Loading branch information
shimmeris committed Dec 31, 2022
1 parent cf71550 commit a1a9837
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion function/http/huawei.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ def handler(event: dict, context: dict):
print(kwargs)

http = urllib3.PoolManager(cert_reqs="CERT_NONE", assert_hostname=False)

r = http.request(**kwargs, retries=False, decode_content=False)

response = {
Expand Down
3 changes: 2 additions & 1 deletion function/http/tencent.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# -*- coding: utf8 -*-
import json
import urllib3
from base64 import b64decode, b64encode

import urllib3


def handler(event: dict, context: dict):
data = event["body"]
Expand Down

0 comments on commit a1a9837

Please sign in to comment.