Skip to content

Commit

Permalink
Merge pull request psf#157 from CodeMogul/fixes
Browse files Browse the repository at this point in the history
Made basic edits
  • Loading branch information
kennethreitz committed Sep 18, 2018
2 parents 29acbaa + cb55034 commit 51afd9e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,7 @@ venv.bak/
/site

# mypy
.mypy_cache/
.mypy_cache/

# Visual Studio Code
.vscode
2 changes: 1 addition & 1 deletion requests_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ async def _async_render(*, url: str, script: str = None, scrolldown, sleep: int,
if self.url == DEFAULT_URL:
reload = False

for i in range(retries):
for _ in range(retries):
if not content:
try:

Expand Down

0 comments on commit 51afd9e

Please sign in to comment.