diff options
author | Federico Caselli <cfederico87@gmail.com> | 2022-07-31 11:56:07 +0200 |
---|---|---|
committer | Federico Caselli <cfederico87@gmail.com> | 2022-07-31 11:56:07 +0200 |
commit | f8c4dba4e9f130c18ce00597c036bc26ae7abf90 (patch) | |
tree | 8c93965b1d9ba365522ca78435db027d73ed5e71 /lib/sqlalchemy/engine/row.py | |
parent | 14bfbadfdf9260a1c40f63b31641b27fe9de12a0 (diff) | |
download | sqlalchemy-f8c4dba4e9f130c18ce00597c036bc26ae7abf90.tar.gz |
Update to flake8 5.
Change-Id: I5a241a70efba68bcea9819ddce6aebc25703e68d
Diffstat (limited to 'lib/sqlalchemy/engine/row.py')
-rw-r--r-- | lib/sqlalchemy/engine/row.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/sqlalchemy/engine/row.py b/lib/sqlalchemy/engine/row.py index 06976dd4b..045b32ac5 100644 --- a/lib/sqlalchemy/engine/row.py +++ b/lib/sqlalchemy/engine/row.py @@ -307,7 +307,8 @@ class ROMappingItemsView(ROMappingView, typing.ItemsView[str, Any]): class RowMapping(BaseRow, typing.Mapping[str, Any]): - """A ``Mapping`` that maps column names and objects to :class:`.Row` values. + """A ``Mapping`` that maps column names and objects to :class:`.Row` + values. The :class:`.RowMapping` is available from a :class:`.Row` via the :attr:`.Row._mapping` attribute, as well as from the iterable interface |