Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix Pylint
  • Loading branch information
xiafu-msft committed Sep 6, 2019
commit d1b7f94e55e023b0db9afbd7e90572163c9a533b
Original file line number Diff line number Diff line change
Expand Up @@ -1580,10 +1580,10 @@ async def upload_pages_from_url(self, source_url, # type: str
"""

options = self._upload_pages_from_url_options(
source_url,
range_start,
range_end,
source_range_start,
source_url=source_url,
range_start=range_start,
range_end=range_end,
source_range_start=source_range_start,
source_content_md5=source_content_md5,
**kwargs
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2412,10 +2412,10 @@ def upload_pages_from_url(self, source_url, # type: str
"""

options = self._upload_pages_from_url_options(
source_url,
range_start,
range_end,
source_range_start,
source_url=source_url,
range_start=range_start,
range_end=range_end,
source_range_start=source_range_start,
source_content_md5=source_content_md5,
**kwargs
)
Expand Down