Skip to content

Commit 3a57432

Browse files
committed
🐧 Fix in Linux
Fix for #4
1 parent 5c60c63 commit 3a57432

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bot_follow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
sleepSecondsLimitedMax = int(args.sleep_max_limited or 1500)
3232

3333
load_dotenv()
34-
USER = os.getenv("USER")
34+
USER = os.getenv("GITHUB_USER")
3535
TOKEN = os.getenv("TOKEN")
3636

3737

bot_unfollow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
sleepSecondsLimitedMax = int(args.sleep_max_limited or 300)
3232

3333
load_dotenv()
34-
USER = os.getenv("USER")
34+
USER = os.getenv("GITHUB_USER")
3535
TOKEN = os.getenv("TOKEN")
3636

3737

0 commit comments

Comments
 (0)