diff options
Diffstat (limited to 'examples/inheritance/single.py')
-rw-r--r-- | examples/inheritance/single.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/inheritance/single.py b/examples/inheritance/single.py index 0d5871cb1..47cfd64eb 100644 --- a/examples/inheritance/single.py +++ b/examples/inheritance/single.py @@ -54,7 +54,7 @@ class Engineer(Person): primary_language = Column(String(30)) # illustrate a single-inh "conflicting" column declaration; - # see http://docs.sqlalchemy.org/en/latest/orm/extensions/ + # see https://docs.sqlalchemy.org/en/latest/orm/extensions/ # declarative/inheritance.html#resolving-column-conflicts @declared_attr def status(cls): |