diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql2.yml similarity index 100% rename from .github/workflows/codeql.yml rename to .github/workflows/codeql2.yml diff --git a/auth.py b/auth.py index 5370fa2..e944b96 100644 --- a/auth.py +++ b/auth.py @@ -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)