Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore(lib): pyproject.toml config
  • Loading branch information
jeertmans committed Aug 26, 2024
commit f02ef630cf69976607dbdcb2d9be2ac4d06de012
4 changes: 1 addition & 3 deletions manim_slides/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,7 @@ def set_ids(self, *ids: int) -> None:
self.ids = list(set(ids))

def match(self, key_id: int) -> bool:
"""
Return whether a given key id matches this key.
"""
"""Return whether a given key id matches this key."""
m = key_id in self.ids

if m:
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -186,10 +186,9 @@ env = [
]

[tool.ruff]
extend-exclude = ["manim_slides/resources.py"]
extend-exclude = ["manim_slides/cli/resources.py"]
extend-include = ["*.ipynb"]
line-length = 88
target-version = "py39"

[tool.ruff.lint]
extend-ignore = [
Expand Down