Skip to content

Commit 6e1bacc

Browse files
committed
40553: fix according to review
1 parent 89179ce commit 6e1bacc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/sage/databases/knotinfo_db.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
This module contains the class :class:`KnotInfoDataBase` and auxiliary classes
55
for it, which serves as an interface to the lists of named knots and links provided
66
at the web-pages `KnotInfo <https://knotinfo.org/>`__ and
7-
`LinkInfo <https://https://link-info-repo.onrender.com/>`__.
7+
`LinkInfo <https://link-info-repo.onrender.com/>`__.
88
99
To use the database, you need to install the optional :ref:`database_knotinfo
1010
<spkg_database_knotinfo>` package by the Sage command ::
@@ -49,7 +49,7 @@ class KnotInfoColumnTypes(Enum):
4949
r"""
5050
Enum class to specify if a column from the table of knots and links provided
5151
at the web-pages `KnotInfo <https://knotinfo.org/>`__ and
52-
`LinkInfo <https://https://link-info-repo.onrender.com/>`__. is used for knots only,
52+
`LinkInfo <https://link-info-repo.onrender.com/>`__. is used for knots only,
5353
links only or both.
5454
5555
EXAMPLES::
@@ -69,7 +69,7 @@ class KnotInfoColumns(Enum):
6969
r"""
7070
Enum class to select a column from the table of knots and links provided
7171
at the web-pages `KnotInfo <https://knotinfo.org/>`__ and
72-
`LinkInfo <https://https://link-info-repo.onrender.com/>`__.
72+
`LinkInfo <https://link-info-repo.onrender.com/>`__.
7373
7474
EXAMPLES::
7575
@@ -327,7 +327,7 @@ def diagram_url(self, fname, single=False):
327327
return '%sdiagram_display.php?%s' % (self.url(), fname)
328328

329329
knots = ['https://knotinfo.org/', 'knotinfo_data_complete']
330-
links = ['https://link-info-repo.onrender.com/', 'linkinfo_data_complete']
330+
links = ['https://link-info-repo.onrender.com/', 'linkinfo_data_complete']
331331

332332

333333
#----------------------------------------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)