Skip to content

Commit 25a6faf

Browse files
mcmilkhpingfs
authored andcommitted
Fix checkstyle warning: E275 missing whitespace after keyword
Reviewed-by: George Melikov <mail@gmelikov.ru> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Tino Reichardt <milky-zfs@mcmilk.de> Closes openzfs#13710
1 parent 9be7f82 commit 25a6faf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/pyzfs/libzfs_core/_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def enum(*sequential, **named):
104104
)
105105
# compat before we used the enum helper for these values
106106
ZFS_ERR_CHECKPOINT_EXISTS = zfs_errno.ZFS_ERR_CHECKPOINT_EXISTS
107-
assert(ZFS_ERR_CHECKPOINT_EXISTS == 1024)
107+
assert (ZFS_ERR_CHECKPOINT_EXISTS == 1024)
108108
ZFS_ERR_DISCARDING_CHECKPOINT = zfs_errno.ZFS_ERR_DISCARDING_CHECKPOINT
109109
ZFS_ERR_NO_CHECKPOINT = zfs_errno.ZFS_ERR_NO_CHECKPOINT
110110
ZFS_ERR_DEVRM_IN_PROGRESS = zfs_errno.ZFS_ERR_DEVRM_IN_PROGRESS

0 commit comments

Comments
 (0)