Skip to content

Commit

Permalink
Fix scripts path in ruff settings
Browse files Browse the repository at this point in the history
  • Loading branch information
rdoursenaud committed Dec 14, 2023
1 parent 7b3f8bf commit 7f2933c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,6 @@ extend-select = [
"extras/**" = [
"T201", # print allowed
]
"scripts/scripts/**" = [
"T201", # print allowed
]

"examples/**" = [
"B007", # allow slightly sloppy loop variables in examples
"S311", # allow RNGs that are not cryptographically secure
Expand All @@ -164,3 +160,6 @@ extend-select = [
"S603", # allow subprocesses with possibly untrusted input
"S607", # allow `amidi` as a partial path
]
"mido/scripts/**" = [
"T201", # print allowed
]

0 comments on commit 7f2933c

Please sign in to comment.