diff options
author | Lint Action <noreply@github.com> | 2021-05-04 06:29:07 +0000 |
---|---|---|
committer | Lint Action <noreply@github.com> | 2021-05-04 06:29:07 +0000 |
commit | 8804f1e10d507ba293fafc77a7e93d3a84a5814b (patch) | |
tree | e107da61f76dfe64dfb96feb5e961bbc4bbd8d52 /ATRI/utils/ub_paste.py | |
parent | ea7f48011c34fdaec7e91af7eb373c8174e439e6 (diff) | |
download | ATRI-8804f1e10d507ba293fafc77a7e93d3a84a5814b.tar.gz ATRI-8804f1e10d507ba293fafc77a7e93d3a84a5814b.tar.bz2 ATRI-8804f1e10d507ba293fafc77a7e93d3a84a5814b.zip |
:rotating_light: 自动进行代码格式化
Diffstat (limited to 'ATRI/utils/ub_paste.py')
-rw-r--r-- | ATRI/utils/ub_paste.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ATRI/utils/ub_paste.py b/ATRI/utils/ub_paste.py index c029afe..56b8261 100644 --- a/ATRI/utils/ub_paste.py +++ b/ATRI/utils/ub_paste.py @@ -7,5 +7,5 @@ URL = "https://paste.ubuntu.com/" async def paste(form_data) -> str: async with ClientSession() as session: async with session.post(url=URL, data=form_data) as r: - result = str(r.url).replace('https://', '') + result = str(r.url).replace("https://", "") return result |