summaryrefslogtreecommitdiff
path: root/examples/inheritance/single.py
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2021-07-04 19:29:19 +0200
committerFederico Caselli <cfederico87@gmail.com>2021-07-04 20:54:33 +0200
commitfb81f9c8d914f9911925dd3f4e77d7fc374b267c (patch)
treebc41febba7eb8c1fab88909a0a13ee04d4cf505a /examples/inheritance/single.py
parentb920869ef54d05e73e2a980b73647d6050ffeb9d (diff)
downloadsqlalchemy-fb81f9c8d914f9911925dd3f4e77d7fc374b267c.tar.gz
Replace all http:// links to https://
Also replace http://pypi.python.org/pypi with https://pypi.org/project Change-Id: I84b5005c39969a82140706472989f2a30b0c7685
Diffstat (limited to 'examples/inheritance/single.py')
-rw-r--r--examples/inheritance/single.py2
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):