Skip to content
This repository has been archived by the owner on Feb 2, 2023. It is now read-only.

Commit

Permalink
Merge pull request #85 from LeagueOfPoro/bugfix-findRewardsCheckmark
Browse files Browse the repository at this point in the history
Remove extra function arguments
  • Loading branch information
LeagueOfPoro committed Oct 11, 2022
2 parents 353d17a + 578b32c commit 217c3a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EsportsCapsuleFarmer/Rewards.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def checkRewards(self, url, retries=5):
splitUrl = url.rsplit('/',1)
match = splitUrl[1] if 1 < len(splitUrl) else "Match "
for i in range(retries):
if self.findRewardsCheckmark(self.driver):
if self.findRewardsCheckmark():
self.log.info(f"{match} is eligible for rewards ✓")
break
else:
Expand Down

0 comments on commit 217c3a5

Please sign in to comment.