Skip to content

Commit 8f44a8f

Browse files
authored
Merge pull request #374 from timgates42/bugfix/typo_usually
Fix simple typo: ussually -> usually
2 parents 2912541 + 29a0f50 commit 8f44a8f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

requests_html.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ def attrs(self) -> _Attrs:
395395
if self._attrs is None:
396396
self._attrs = {k: v for k, v in self.element.items()}
397397

398-
# Split class and rel up, as there are ussually many of them:
398+
# Split class and rel up, as there are usually many of them:
399399
for attr in ['class', 'rel']:
400400
if attr in self._attrs:
401401
self._attrs[attr] = tuple(self._attrs[attr].split())

0 commit comments

Comments
 (0)