Skip to content

Commit

Permalink
Fix Flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
wwark committed Mar 9, 2021
1 parent 593a689 commit c5ea0ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/lib/channels/wo/tv5mondeafrique.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def list_videos(plugin, item_id, program_url, **kwargs):
else:
list_videos_datas = root.findall(
".//div[@class='season-1 views-row']")
# TODO Get season number
# TODO Get season number
for video_datas in list_videos_datas:
if video_datas.find('.//h2') is not None:
video_title = video_datas.find('.//h2').text
Expand Down Expand Up @@ -159,7 +159,7 @@ def list_videos_season(plugin, item_id, season_url, **kwargs):

for video_datas in root.iterfind(
".//div[@class='season-1 views-row']"):
# TODO Season value
# TODO Season value
if video_datas.find('.//h2') is not None:
video_title = video_datas.find('.//h2').text
if 'http' in video_datas.find('.//img').get('src'):
Expand Down

0 comments on commit c5ea0ef

Please sign in to comment.