Skip to content

Commit

Permalink
Correct the Session argument's type hint in ApplessSecurityManager (#…
Browse files Browse the repository at this point in the history
…44962)

In #33901 this was moved to a new file and mistakenly changed to
flask_session.

It's not clear to me why this didn't cause errors, but it was highlighted in
my editor as an invalid type 🤷
  • Loading branch information
ashb authored Dec 16, 2024
1 parent 83da311 commit 3b6a6f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/www/security_appless.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from airflow.providers.fab.auth_manager.security_manager.override import FabAirflowSecurityManagerOverride

if TYPE_CHECKING:
from flask_session import Session
from sqlalchemy.orm import Session


class FakeAppBuilder:
Expand Down

0 comments on commit 3b6a6f4

Please sign in to comment.