We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdc1644 commit f5e35d2Copy full SHA for f5e35d2
catppuccin/extras/pygments.py
@@ -1,6 +1,8 @@
1
"""
2
Pygments styles for all Catppuccin flavours.
3
4
+from typing import Dict
5
+
6
from pygments.style import Style
7
from pygments.token import (
8
Comment,
@@ -20,7 +22,7 @@
20
22
from catppuccin.flavour import Flavour
21
23
24
-def _make_styles(flavour: Flavour) -> dict[_TokenType, str]:
25
+def _make_styles(flavour: Flavour) -> Dict[_TokenType, str]:
26
return {
27
Token: f"#{flavour.text.hex}",
28
Text: f"#{flavour.text.hex}",
0 commit comments