Skip to content

Commit

Permalink
make lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinjqliu committed Jan 23, 2024
1 parent 69185ce commit bf55495
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyiceberg/catalog/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,9 @@ def load_sql(name: str, conf: Properties) -> Catalog:

return SqlCatalog(name, **conf)
except ImportError as exc:
raise NotInstalledError("SQLAlchemy support not installed: pip install 'pyiceberg[sql-postgres]' or pip install 'pyiceberg[sql-sqlite]'") from exc
raise NotInstalledError(
"SQLAlchemy support not installed: pip install 'pyiceberg[sql-postgres]' or pip install 'pyiceberg[sql-sqlite]'"
) from exc


AVAILABLE_CATALOGS: dict[CatalogType, Callable[[str, Properties], Catalog]] = {
Expand Down

0 comments on commit bf55495

Please sign in to comment.