Skip to content

Commit

Permalink
Merge pull request #374 from timgates42/bugfix/typo_usually
Browse files Browse the repository at this point in the history
Fix simple typo: ussually -> usually
  • Loading branch information
oldani authored May 10, 2020
2 parents 2912541 + 29a0f50 commit 8f44a8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion requests_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ def attrs(self) -> _Attrs:
if self._attrs is None:
self._attrs = {k: v for k, v in self.element.items()}

# Split class and rel up, as there are ussually many of them:
# Split class and rel up, as there are usually many of them:
for attr in ['class', 'rel']:
if attr in self._attrs:
self._attrs[attr] = tuple(self._attrs[attr].split())
Expand Down

0 comments on commit 8f44a8f

Please sign in to comment.