Skip to content

Commit 6c3b44f

Browse files
STY: Apply ruff rule RUF027
RUF027 Possible f-string without an `f` prefix
1 parent 648ff5b commit 6c3b44f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

niworkflows/interfaces/cifti.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def _prepare_cifti(grayordinates: str) -> tuple[list, str, dict]:
202202
'170k': {'surface-den': '59k', 'tf-res': '06', 'grayords': '170,494', 'res-mm': '1.6mm'},
203203
}
204204
if grayordinates not in grayord_key:
205-
raise NotImplementedError('Grayordinates {grayordinates} is not supported.')
205+
raise NotImplementedError(f'Grayordinates {grayordinates} is not supported.')
206206

207207
tf_vol_res = grayord_key[grayordinates]['tf-res']
208208
total_grayords = grayord_key[grayordinates]['grayords']

0 commit comments

Comments
 (0)