Skip to content

Commit

Permalink
fixed a type issue with time
Browse files Browse the repository at this point in the history
  • Loading branch information
andreburgaud committed Jul 13, 2024
1 parent 6d41dc9 commit a668406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion robots/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def __init__(self, url=""):
self.allow_all = False
self._host = ""
self._path = "/robots.txt"
self._time = 0 # Time the robots.txt is fetched
self._time = 0.0 # Time the robots.txt is fetched

@property
def errors(self):
Expand Down

0 comments on commit a668406

Please sign in to comment.