Skip to content

Commit 15dc59d

Browse files
Added missing ">" to repr() of SodaDatabase.
1 parent 78c8308 commit 15dc59d

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

doc/src/release_notes.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ Thin Mode Changes
1919
('Q' strings), and fix some issues identifying bind variable placeholders
2020
in embedded quotes and in JSON syntax.
2121

22-
Thick Mode Changes
23-
++++++++++++++++++
24-
2522
Common Changes
2623
++++++++++++++
2724

@@ -35,6 +32,7 @@ Common Changes
3532
statements with the noted invalid syntax. Previously, thick mode gave
3633
``ORA-1756`` or ``ORA-1740``, respectively, while thin mode did not throw
3734
an error.
35+
#) Added missing ">" to repr() of SodaDatabase.
3836

3937

4038
oracledb 1.4.0 (August 2023)

src/oracledb/soda.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
class SodaDatabase:
3838

3939
def __repr__(self):
40-
return f"<oracledb.SodaDatabase on {self._conn!r}"
40+
return f"<oracledb.SodaDatabase on {self._conn!r}>"
4141

4242
@classmethod
4343
def _from_impl(cls, conn, impl):

0 commit comments

Comments
 (0)