Skip to content

Commit 3e5590f

Browse files
authored
Merge pull request #38 from atseewal/master
Changing broken font URL
2 parents 204c8c6 + 88092ab commit 3e5590f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ pip install ridge_map
2121
Or live on the edge and install from github with
2222

2323
```bash
24-
!pip install git+https://github.com/colcarroll/ridge_map.git
24+
pip install git+https://github.com/colcarroll/ridge_map.git
2525
```
2626

2727
Want to help?

ridge_map/ridge_map.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class FontManager:
2929

3030
def __init__(
3131
self,
32-
github_url="https://github.com/NDISCOVER/Cinzel/blob/master/fonts/ttf/Cinzel-Regular.ttf?raw=True", # pylint: disable=line-too-long
32+
github_url="https://github.com/google/fonts/raw/main/ofl/cinzel/Cinzel%5Bwght%5D.ttf", # pylint: disable=line-too-long
3333
):
3434
"""
3535
Lazily download a font.
@@ -38,7 +38,7 @@ def __init__(
3838
----------
3939
github_url : str
4040
Can really be any .ttf file, but probably looks like
41-
"https://github.com/google/fonts/blob/5c3d8ef085f3084db38936d0dcd39a567dbc1e01/ofl/cinzel/static/Cinzel-Regular.ttf?raw=True" # pylint: disable=line-too-long
41+
"https://github.com/google/fonts/raw/main/ofl/cinzel/Cinzel%5Bwght%5D.ttf" # pylint: disable=line-too-long
4242
"""
4343
self.github_url = github_url
4444
self._prop = None

0 commit comments

Comments
 (0)