Skip to content

Commit

Permalink
comment update to pass linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Yannik Sahl committed Jan 24, 2024
1 parent df61d68 commit c4e9b4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flathunter/crawler/wggesucht.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def parse_expose_element_to_details(row: Tag, crawler: str) -> Optional[Dict]:

def liste_attribute_filter(element: Union[Tag, str]) -> bool:
"""Return true for elements whose 'id' attribute starts with 'liste-'
and are not contained in the random results container 'premium_user_extra_list'"""
and are not contained in the 'premium_user_extra_list' container"""
if not isinstance(element, Tag):
return False
if not element.attrs or "id" not in element.attrs:
Expand Down

0 comments on commit c4e9b4e

Please sign in to comment.