Added missing ">" to repr() of SodaDatabase.

This commit is contained in:
Anthony Tuininga 2023-09-06 16:22:01 -06:00
parent 78c8308f57
commit 15dc59d7a1
2 changed files with 2 additions and 4 deletions

View File

@ -19,9 +19,6 @@ Thin Mode Changes
('Q' strings), and fix some issues identifying bind variable placeholders
in embedded quotes and in JSON syntax.
Thick Mode Changes
++++++++++++++++++
Common Changes
++++++++++++++
@ -35,6 +32,7 @@ Common Changes
statements with the noted invalid syntax. Previously, thick mode gave
``ORA-1756`` or ``ORA-1740``, respectively, while thin mode did not throw
an error.
#) Added missing ">" to repr() of SodaDatabase.
oracledb 1.4.0 (August 2023)

View File

@ -37,7 +37,7 @@ from . import connection, errors
class SodaDatabase:
def __repr__(self):
return f"<oracledb.SodaDatabase on {self._conn!r}"
return f"<oracledb.SodaDatabase on {self._conn!r}>"
@classmethod
def _from_impl(cls, conn, impl):