8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
palette.json
1 parent 586eae9 commit c473530Copy full SHA for c473530
apply.py
@@ -6,7 +6,7 @@
6
import urllib.request
7
8
def main():
9
- with urllib.request.urlopen('https://raw.githubusercontent.com/catppuccin/palette/main/palette.json') as f:
+ with urllib.request.urlopen('https://raw.githubusercontent.com/catppuccin/palette/v0.2.0/palette.json') as f:
10
data = f.read().decode('utf-8')
11
colors = json.loads(data)
12
@@ -52,4 +52,4 @@ def main():
52
if len(sys.argv) < 3:
53
print("missing arguments: ./apply.py [theme] [path]")
54
exit(1)
55
- main()
+ main()
0 commit comments