p115client 0.0.5.12__py3-none-any.whl → 0.0.5.12.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
p115client/_upload.py CHANGED
@@ -329,7 +329,7 @@ def oss_multipart_part_iter(
329
329
  if getattr(etree.find("IsTruncated"), "text") == "false":
330
330
  break
331
331
  params["part-number-marker"] = getattr(etree.find("NextPartNumberMarker"), "text")
332
- return run_gen_step_iter(gen_step, may_call=False, async_=async_)
332
+ return run_gen_step_iter(gen_step, async_)
333
333
 
334
334
 
335
335
  @overload
@@ -723,7 +723,7 @@ def oss_multipart_upload_part_iter(
723
723
  ))
724
724
  if part["Size"] < partsize:
725
725
  break
726
- return run_gen_step_iter(gen_step, may_call=False, async_=async_)
726
+ return run_gen_step_iter(gen_step, async_)
727
727
 
728
728
 
729
729
  @overload
@@ -971,5 +971,5 @@ def oss_multipart_upload(
971
971
  finally:
972
972
  if close_reporthook is not None:
973
973
  yield close_reporthook()
974
- return run_gen_step(gen_step, may_call=False, async_=async_)
974
+ return run_gen_step(gen_step, async_)
975
975