]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Remove unnecessary r-prefix from docstring in 'columns' method (#12768)
authorSviatoslav Bobryshev <61021258+sbobryshev@users.noreply.github.com>
Tue, 29 Jul 2025 20:08:15 +0000 (23:08 +0300)
committerGitHub <noreply@github.com>
Tue, 29 Jul 2025 20:08:15 +0000 (22:08 +0200)
lib/sqlalchemy/engine/result.py

index 49b4b97dd77573630b6a17aa003235287cba1aa7..7c72f288f6b517f407775c768442d7de6bb12165 100644 (file)
@@ -2025,7 +2025,7 @@ class MappingResult(_WithKeys, FilterResult[RowMapping]):
         return self
 
     def columns(self, *col_expressions: _KeyIndexType) -> Self:
-        r"""Establish the columns that should be returned in each row."""
+        """Establish the columns that should be returned in each row."""
         return self._column_slices(col_expressions)
 
     def partitions(