We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b40a82f commit ee5a795Copy full SHA for ee5a795
awswrangler/oracle.py
@@ -196,8 +196,8 @@ def connect(
196
dsn=connection_dsn,
197
)
198
# oracledb.connect does not have a call_timeout attribute, it has to be set separatly
199
- oracle_connection.call_timeout = call_timeout
200
- return oracle_connection # type: ignore[no-any-return]
+ oracle_connection.call_timeout = call_timeout # type: ignore[assignment]
+ return oracle_connection
201
202
203
@overload
0 commit comments