Skip to content

Commit

Permalink
Remove default strategy choice (currently: 2:1) (#16)
Browse files Browse the repository at this point in the history
Do not set default, let the user choose the strategy explicitly on the
command line
  • Loading branch information
damyan authored Jan 29, 2024
1 parent c84287d commit e3bb876
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Implements some basic automation for auto submitting tips on [kicktipp](https://kicktipp.com). The auto submitting is based on [selenium](https://www.selenium.dev) browser automation. Login credentials are PGP-encrypted with [SOPS](https://technotim.live/posts/install-mozilla-sops/).

Currently only two result submitting strategies are implemented:
- `2-1` for the "2-1 bot" (use -2, default)
- `2-1` for the "2-1 bot" (use -2)
- `random` for the "random bot" (use -r)

but the automation module can be extended easily to support any type of bets.
Expand Down Expand Up @@ -38,6 +38,6 @@ Perform automatic kicktipp tipping for the bots

options:
-h, --help show this help message and exit
-2 2:1 tipping (DEFAULT)
-2 2:1 tipping
-r random tipping
```
1 change: 0 additions & 1 deletion src/auto_submit_tips.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ def parse_args():
const='random',
dest='mode',
help="random tipping")
parser.set_defaults(mode='two_one')
args = parser.parse_args()
logger.debug("Command line arguments: %s", args)

Expand Down

0 comments on commit e3bb876

Please sign in to comment.