Skip to content

Commit f02ef63

Browse files
committed
chore(lib): pyproject.toml config
1 parent ae8d5b6 commit f02ef63

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

manim_slides/core/config.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,7 @@ def set_ids(self, *ids: int) -> None:
9292
self.ids = list(set(ids))
9393

9494
def match(self, key_id: int) -> bool:
95-
"""
96-
Return whether a given key id matches this key.
97-
"""
95+
"""Return whether a given key id matches this key."""
9896
m = key_id in self.ids
9997

10098
if m:

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,10 +186,9 @@ env = [
186186
]
187187

188188
[tool.ruff]
189-
extend-exclude = ["manim_slides/resources.py"]
189+
extend-exclude = ["manim_slides/cli/resources.py"]
190190
extend-include = ["*.ipynb"]
191191
line-length = 88
192-
target-version = "py39"
193192

194193
[tool.ruff.lint]
195194
extend-ignore = [

0 commit comments

Comments
 (0)