Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[flake8]
max-line-length = 99
indent-width = 4
extend-ignore = E203
include =
setup.py
src/pygambit
Expand Down
2 changes: 1 addition & 1 deletion build_support/catalog/test_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ def test_second_level_dropdown_is_not_open(self, tmp_path, monkeypatch):
assert " .. dropdown:: My Source\n \n" in rst
# Confirm :open: does not immediately follow the second-level dropdown
src_idx = rst.index(" .. dropdown:: My Source")
assert ":open:" not in rst[src_idx:src_idx + 40]
assert ":open:" not in rst[src_idx : src_idx + 40]

def test_game_dropdown_is_open(self, tmp_path, monkeypatch):
"""Individual game dropdowns carry ``:open:`` so game content is visible on expand."""
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ select = [
"Q", # prefer double quotes
"W291", # trailing-whitespace
]
ignore = []
ignore = ["E203"]

fixable = ["ALL"]
unfixable = []
Expand Down
Loading