diff options
author | Vraj Mohan <r.vrajmohan@gmail.com> | 2013-11-12 18:18:04 -0500 |
---|---|---|
committer | Vraj Mohan <r.vrajmohan@gmail.com> | 2013-11-12 20:23:05 -0500 |
commit | fe1d64473896b1e8abeb8ddb966447632c057321 (patch) | |
tree | 1300d2f511f129e260510f7118785d26db8cc79b /lib/sqlalchemy/orm/relationships.py | |
parent | 226c7ec7904ae325e0db35ce7841b4aa0d33974f (diff) | |
download | sqlalchemy-pr/43.tar.gz |
Fix indentation issues in docstringspr/43
Diffstat (limited to 'lib/sqlalchemy/orm/relationships.py')
-rw-r--r-- | lib/sqlalchemy/orm/relationships.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/sqlalchemy/orm/relationships.py b/lib/sqlalchemy/orm/relationships.py index f0b23111c..8296be60a 100644 --- a/lib/sqlalchemy/orm/relationships.py +++ b/lib/sqlalchemy/orm/relationships.py @@ -732,7 +732,7 @@ class RelationshipProperty(StrategizedProperty): @util.memoized_property def mapper(self): """The target :class:`.Mapper` referred to by this - :class:`.RelationshipProperty.Comparator. + :class:`.RelationshipProperty.Comparator`. This is the "target" or "remote" side of the :func:`.relationship`. @@ -1372,7 +1372,8 @@ class RelationshipProperty(StrategizedProperty): def table(self): """Return the selectable linked to this :class:`.RelationshipProperty` object's target - :class:`.Mapper`.""" + :class:`.Mapper`. + """ return self.target def do_init(self): |