Skip to content

Commit b73d24a

Browse files
committed
add type ignore
1 parent a84eb39 commit b73d24a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

awswrangler/oracle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ def detect_oracle_decimal_datatype(cursor: Any) -> dict[str, pa.DataType]:
607607
if isinstance(cursor, oracledb.Cursor):
608608
# Oracle stores DECIMAL as the NUMBER type
609609

610-
for name, db_type, display_size, internal_size, precision, scale, null_ok in cursor.description:
610+
for name, db_type, display_size, internal_size, precision, scale, null_ok in cursor.description: # type: ignore
611611
_logger.debug((name, db_type, display_size, internal_size, precision, scale, null_ok))
612612

613613
if db_type == oracledb.DB_TYPE_NUMBER and scale is not None and scale > 0:

0 commit comments

Comments
 (0)