8000 Merge pull request #1 from catppuccin/fix/pin-palette-json · catppuccin/solvespace@aeef099 · GitHub
[go: up one dir, main page]

Skip to content

Commit aeef099

Browse files
authored
Merge pull request #1 from catppuccin/fix/pin-palette-json
fix: pin `palette.json` tag
2 parents 586eae9 + c473530 commit aeef099

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apply.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import urllib.request
77

88
def main():
9-
with urllib.request.urlopen('https://raw.githubusercontent.com/catppuccin/palette/main/palette.json') as f:
9+
with urllib.request.urlopen('https://raw.githubusercontent.com/catppuccin/palette/v0.2.0/palette.json') as f:
1010
data = f.read().decode('utf-8')
1111
colors = json.loads(data)
1212

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

0 commit comments

Comments
 (0)
0