Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdelorenzo authored Oct 13, 2020
1 parent 4f5ed24 commit 8388612
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ limiter = get_limiter(rate=REFRESH_RATE, capacity=BURST_RATE)


@limit(limiter)
def get_page(url: str) -> Response:
def get_page(url: str) -> 'Response':
tsleep(1)
...


@limit(limiter, consume=2)
Expand Down

0 comments on commit 8388612

Please sign in to comment.