File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -154,6 +154,9 @@ Common Changes
154
154
:meth: `oracledb.connect_async() `, :meth: `oracledb.create_pool() ` and
155
155
:meth: `oracledb.create_pool_async() `
156
156
(`issue 438 <https://github.com/oracle/python-oracledb/issues/438 >`__).
157
+ #) Fix typing issues with setters for :attr: `defaults.fetch_lobs ` and
158
+ :attr: `defaults.fetch_decimals `
159
+ (`issue 458 <https://github.com/oracle/python-oracledb/issues/458 >`__).
157
160
#) Error ``DPY-2053: python-oracledb thin mode cannot be used because thick
158
161
mode has already been enabled `` is now raised when attempting to use
159
162
asyncio in thick mode
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ def fetch_lobs(self) -> bool:
75
75
return self ._impl .fetch_lobs
76
76
77
77
@fetch_lobs .setter
78
- def fetch_lobs (self , value : str ):
78
+ def fetch_lobs (self , value : bool ):
79
79
self ._impl .fetch_lobs = value
80
80
81
81
@property
@@ -87,7 +87,7 @@ def fetch_decimals(self) -> bool:
87
87
return self ._impl .fetch_decimals
88
88
89
89
@fetch_decimals .setter
90
- def fetch_decimals (self , value : str ):
90
+ def fetch_decimals (self , value : bool ):
91
91
self ._impl .fetch_decimals = value
92
92
93
93
@property
You can’t perform that action at this time.
0 commit comments