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 3d00cd0 commit f2b2f52Copy full SHA for f2b2f52
wbmbot_v2/helpers/constants.py
@@ -2,7 +2,7 @@
2
import os
3
4
# Bot version (MAJOR.MINOR.PATCH)
5
-bot_version = "1.0.0"
+bot_version = "1.0.1"
6
7
# Today
8
today = dt.date.today()
wbmbot_v2/main.py
@@ -61,7 +61,11 @@ def parse_args():
61
LOG = color_me.create_logger()
62
63
# Create ChromeDriver
64
- LOG.info(color_me.cyan(f"Initializing Script (v{constants.bot_version}) 🚀"))
+ LOG.info(
65
+ color_me.cyan(
66
+ f"Initializing Script (v{constants.bot_version}) (Headless? {args.args.headless}) 🚀"
67
+ )
68
69
LOG.info(color_me.cyan("Checking for internet connection 🔎"))
70
while True:
71
if not misc_operations.check_internet_connection():
0 commit comments