Skip to content

Commit

Permalink
fix: pin palette.json tag
Browse files Browse the repository at this point in the history
  • Loading branch information
nekowinston committed Aug 22, 2023
1 parent 586eae9 commit c473530
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apply.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import urllib.request

def main():
with urllib.request.urlopen('https://github.com/raw/catppuccin/palette/main/palette.json') as f:
with urllib.request.urlopen('https://github.com/raw/catppuccin/palette/v0.2.0/palette.json') as f:
data = f.read().decode('utf-8')
colors = json.loads(data)

Expand Down Expand Up @@ -52,4 +52,4 @@ def main():
if len(sys.argv) < 3:
print("missing arguments: ./apply.py [theme] [path]")
exit(1)
main()
main()

0 comments on commit c473530

Please sign in to comment.