Skip to content

Commit 218cdfc

Browse files
committed
Implement SchedulingStrategy and derivative classes so they work with the Scheduler refactor
1 parent 9eaa565 commit 218cdfc

File tree

4 files changed

+678
-748
lines changed

4 files changed

+678
-748
lines changed

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -149,16 +149,16 @@ indent-style = "space"
149149

150150
[tool.ruff.lint]
151151
ignore = [
152-
"PLR0913",
153-
"TC001",
154-
"COM812",
155-
"ISC001",
156-
"TC002",
152+
"COM812", # ignore trailing comma errors due to older Python versions
153+
"PD011", # ignore .values usage since ruff assumes it's a Pandas DataFrame
154+
"PLR0913", # ignore too many arguments in function definitions
157155
"PLW1514", # allow Path.open without encoding
158156
"RET505", # allow `else` blocks
159157
"RET506", # allow `else` blocks
160-
"PD011", # ignore .values usage since ruff assumes it's a Pandas DataFrame
161-
"TC003", # ignore imports for only type checking errors
158+
"S311", # allow standard pseudo-random generators
159+
"TC001", # ignore imports used only for type checking
160+
"TC002", # ignore imports used only for type checking
161+
"TC003", # ignore imports used only for type checking
162162
]
163163
select = [
164164
# Rules reference: https://docs.astral.sh/ruff/rules/

0 commit comments

Comments
 (0)