Skip to content

Commit 91d0d0b

Browse files
committed
fix: add missing feature flag in ci
1 parent 0d3b1db commit 91d0d0b

File tree

3 files changed

+270
-274
lines changed

3 files changed

+270
-274
lines changed

.github/workflows/lint.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Lint
22
on:
33
push:
44
paths:
5-
- '**.py'
5+
- "**.py"
66
jobs:
77
lint:
88
strategy:
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
poetry-version: "1.2.2"
2121
- run: poetry config virtualenvs.create false
22-
- run: poetry install -E pygments
22+
- run: poetry install -E pygments -E rich
2323
- run: isort --check .
2424
- run: black --check .
2525
- run: pylint catppuccin

catppuccin/extras/rich_ctp.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
"""
2+
Rich themes for all Catppuccin flavours.
3+
"""
14
from rich.theme import Theme
25

36
from catppuccin.flavour import Flavour

0 commit comments

Comments
 (0)