mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 20:14:51 +00:00
Use double quotes
This commit is contained in:
parent
6f9c12bfe9
commit
880eb28e9f
1 changed files with 2 additions and 2 deletions
|
|
@ -2293,7 +2293,7 @@ class Client:
|
|||
)
|
||||
|
||||
if isinstance(r, types.upload.File):
|
||||
with tempfile.NamedTemporaryFile('wb', delete=False) as f:
|
||||
with tempfile.NamedTemporaryFile("wb", delete=False) as f:
|
||||
file_name = f.name
|
||||
|
||||
while True:
|
||||
|
|
@ -2332,7 +2332,7 @@ class Client:
|
|||
cdn_session.start()
|
||||
|
||||
try:
|
||||
with tempfile.NamedTemporaryFile('wb', delete=False) as f:
|
||||
with tempfile.NamedTemporaryFile("wb", delete=False) as f:
|
||||
file_name = f.name
|
||||
|
||||
while True:
|
||||
|
|
|
|||
Loading…
Reference in a new issue