Skip to content

Commit cbd6299

Browse files
committed
STY: Use double quotation marks in pyproject.toml consistently
Use double quotation marks to enclose strings in `pyproject.toml` consistently.
1 parent 82b687f commit cbd6299

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

pyproject.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -227,26 +227,26 @@ filterwarnings = [
227227
[tool.coverage.run]
228228
branch = true
229229
parallel = true
230-
concurrency = ['multiprocessing']
230+
concurrency = ["multiprocessing"]
231231
omit = [
232-
'*/tests/*',
233-
'*/testing/*',
234-
'*/viz/*',
235-
'*/__init__.py',
236-
'*/conftest.py',
237-
'src/nifreeze/_version.py'
232+
"*/tests/*",
233+
"*/testing/*",
234+
"*/viz/*",
235+
"*/__init__.py",
236+
"*/conftest.py",
237+
"src/nifreeze/_version.py"
238238
]
239239

240240
[tool.coverage.report]
241241
# Regexes for lines to exclude from consideration
242242
exclude_lines = [
243-
'raise NotImplementedError',
244-
'warnings\.warn',
243+
"raise NotImplementedError",
244+
"warnings\\.warn",
245245
]
246246

247247
[tool.codespell]
248248
# nd - import scipy.ndimage as nd
249249
# mapp, reson -- Mapp. and Reson. abbreviations in citation
250-
ignore-words-list = 'nd,mapp,reson'
250+
ignore-words-list = "nd,mapp,reson"
251251
skip = """
252252
./.git,*.pdf,*.svg,*.min.js,*.ipynb"""

0 commit comments

Comments
 (0)