Commit 129a0968 authored by Jan Reimes's avatar Jan Reimes
Browse files

🧹 chore: remove stale duplicate comment block in portal auth

parent 02f12a42
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -154,14 +154,10 @@ class PortalClient:
        login_response.raise_for_status()

        response_text = login_response.text.strip()
        # Step 3: store the authenticated session
        self._session = session
        self._authenticated = True

        if response_text.lower() == "failed":
            raise PortalAuthenticationError("Authentication failed - check credentials")

        # Step 3: Store the authenticated session
        self._session = session
        self._authenticated = True
        logger.info("Successfully authenticated with 3GPP portal")