Skip to content

Commit

Permalink
Simplify another items to values
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam committed Oct 18, 2024
1 parent 572ac52 commit 6309ef1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adodbapi/apibase.py
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ def __next__(self):
yield self._getValue(n)

def __repr__(self): # create a human readable representation
taglist = sorted(self.rows.columnNames.items(), key=lambda x: x[1])
taglist = sorted(self.rows.columnNames.values())
s = "<SQLrow={"
for name, i in taglist:
s += f"{name}:{self._getValue(i)!r}, "
Expand Down

0 comments on commit 6309ef1

Please sign in to comment.