Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
axsddlr committed Aug 13, 2024
2 parents f3b7075 + 69babb9 commit 55b15b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion api/scrape.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def vlr_match_results():

rounds = item.css_first("div.match-item-event-series").text()
rounds = rounds.replace("\u2013", "-")
rounds = rounds.replace("\n", " ").replace("\t", "")
rounds = rounds.replace("\n", "").replace("\t", "")

tourney = item.css_first("div.match-item-event").text()
tourney = tourney.replace("\t", " ")
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
requests==2.32.3
uvicorn==0.30.3
uvicorn==0.30.5
fastapi==0.111.1
lxml==5.2.2
lxml==5.3.0
slowapi==0.1.9
selectolax==0.3.21

0 comments on commit 55b15b9

Please sign in to comment.