Skip to content
This repository was archived by the owner on Jan 25, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ def load_bluesky_credentials() -> tuple[str, str]:
if load_dotenv():
handle = os.getenv("BLUESKY_HANDLE")
password = os.getenv("BLUESKY_APP_PASSWORD")
print(handle)
print(password)
assert handle != "", "BLUESKY_HANDLE can not be empty."
assert password != "", "BLUE_APP_PASSWORD can not be empty."
return (handle, password)
Expand Down