Skip to content

Commit 39f1241

Browse files
MNT: Apply refurb suggestion
[FURB123]: Replace `int(x)` with `x`
1 parent 59825e4 commit 39f1241

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nibabel/cmdline/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def verbose(thing, msg):
3232
"""Print `s` if `thing` is less than the `verbose_level`
3333
"""
3434
# TODO: consider using nibabel's logger
35-
if thing <= int(verbose_level):
35+
if thing <= verbose_level:
3636
print(' ' * thing + msg)
3737

3838

0 commit comments

Comments
 (0)