Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
john-bodley committed Jun 12, 2023
1 parent 46ee00e commit 60cb66a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/connectors/sqla/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def __init__(self, **kwargs: Any) -> None:
the ORM) depending on the context.
"""

self._database: Optional[Database] = kwargs.pop("database", None)
self._database: Database | None = kwargs.pop("database", None)
super().__init__(**kwargs)

@reconstructor
Expand Down

0 comments on commit 60cb66a

Please sign in to comment.