Skip to content

Commit

Permalink
Update docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Aug 29, 2023
1 parent faa3911 commit c6488b4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tap_athena/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@ def get_sqlalchemy_url(self, config: dict[str, t.Any]) -> str:
)

def create_engine(self) -> Engine:
"""Create a SQLAlchemy engine."""
"""Create a SQLAlchemy engine.
Returns:
A SQLAlchemy engine.
"""
return sqlalchemy.create_engine(
self.sqlalchemy_url,
echo=False,
Expand Down

0 comments on commit c6488b4

Please sign in to comment.