Jon Solow commited on
Commit
a29184a
1 Parent(s): 54505df

Apply ruff format

Browse files
src/queries/nbcsports/player_news.py CHANGED
@@ -21,7 +21,7 @@ def parse_player_div(player_div):
21
  "Team": find_soup_text_with_default(player_div, "span", {"class": "PlayerNewsPost-team-abbr"}).upper(),
22
  "Position": find_soup_text_with_default(player_div, "span", {"class": "PlayerNewsPost-position"}).title(),
23
  "Headline": find_soup_text_with_default(player_div, "div", {"class": "PlayerNewsPost-headline"}),
24
- "Analysis":find_soup_text_with_default(player_div, "div", {"class": "PlayerNewsPost-analysis"}),
25
  }
26
 
27
 
 
21
  "Team": find_soup_text_with_default(player_div, "span", {"class": "PlayerNewsPost-team-abbr"}).upper(),
22
  "Position": find_soup_text_with_default(player_div, "span", {"class": "PlayerNewsPost-position"}).title(),
23
  "Headline": find_soup_text_with_default(player_div, "div", {"class": "PlayerNewsPost-headline"}),
24
+ "Analysis": find_soup_text_with_default(player_div, "div", {"class": "PlayerNewsPost-analysis"}),
25
  }
26
 
27