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

Commit

Permalink
Remove extra function arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
LeagueOfPoro committed Oct 11, 2022
1 parent 353d17a commit 578b32c
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 578b32c

Please sign in to comment.