We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3fb096 commit e07a501Copy full SHA for e07a501
FPLbot/utils.py
@@ -77,7 +77,6 @@ async def understat_matches_data(session, player):
77
try:
78
understat = Understat(session)
79
matches_data = await understat.get_player_matches(player["id"])
80
- await asyncio.sleep(0.1)
81
for fixture in matches_data:
82
fixture["h_team"] = understat_team_converter(fixture["h_team"])
83
fixture["a_team"] = understat_team_converter(fixture["a_team"])
@@ -129,6 +128,7 @@ async def update_players():
129
128
130
print("Getting Understat players...")
131
understat_players = await get_understat_players()
+ print("Retrieved Understat players...")
132
133
for player in understat_players:
134
# Only update FPL player with desired attributes
0 commit comments